// サブウィンドウの大きさと開く位置の指定
w = 660; // 横幅
h = 580; // 縦幅
function openWindow1() {
  x = (screen.width - w) / 2;
  y = (screen.height - h) / 2;
  subWin = window.open("pv01.html","PromotionVideo",
    "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h);
}

function openWindow2() {
  x = (screen.width - w) / 2;
  y = (screen.height - h) / 2;
  subWin = window.open("pv02.html","PromotionVideo",
    "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h);
}

function openWindow3() {
  x = (screen.width - w) / 2;
  y = (screen.height - h) / 2;
  subWin = window.open("pv03.html","PromotionVideo",
    "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h);
}

function openWindow4() {
  x = (screen.width - w) / 2;
  y = (screen.height - h) / 2;
  subWin = window.open("pv04.html","PromotionVideo",
    "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h);
}

function openWindow5() {
  x = (screen.width - w) / 2;
  y = (screen.height - h) / 2;
  subWin = window.open("pv04_make.html","PromotionVideo",
    "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h);
}

//-->