// JavaScript Document


w = 600; // 横幅
h = 400; // 縦幅

function winopen01() {
  x = (screen.width - w) / 2;
  y = (screen.height - h) / 2;
  subWin = window.open("product/product01.html","OpenWindow",
    "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h);
}


function winopen02() {
  x = (screen.width - w) / 2;
  y = (screen.height - h) / 2;
  subWin = window.open("product/product02.html","OpenWindow",
    "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h);
}


function winopen03() {
  x = (screen.width - w) / 2;
  y = (screen.height - h) / 2;
  subWin = window.open("product/product03.html","OpenWindow",
    "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h);
}


function winopen04() {
  x = (screen.width - w) / 2;
  y = (screen.height - h) / 2;
  subWin = window.open("product/product04.html","OpenWindow",
    "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h);
}
