// JavaScript Document


w = 600; // 横幅
h = 600; // 縦幅

function winopen() {
  x = (screen.width - w) / 2;
  y = (screen.height - h) / 2;
  subWin = window.open("index/pick_up/pick_up.html","OpenWindow",
    "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h);
}



function winopen01() {
  x = (screen.width - w) / 2;
  y = (screen.height - h) / 2;
  subWin = window.open("contact/contact.html","OpenWindow",
    "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h);
}
