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



//-->
