<!--OpenWindowスプリクト-->
//---------　問診表
<!--
// サブウィンドウの大きさと開く位置の指定
//l = 60; // 表示するx座標
//t = 30; // 表示するy座標
w = 320; // 横幅
h = 480; // 縦幅
// 中央に開く
function openWindowC() {
  x = (screen.width - w) / 2;
  y = (screen.height - h) / 2;
  subWin = window.open("download.html","OpenWindow",
    'scrollbars=no,resizable=yes,width=320,height=480');

}

function openWindowC2() {
  x = (screen.width - w) / 2;
  y = (screen.height - h) / 2;  
    subWin = window.open("campaign.html","OpenWindow",
    'scrollbars=no,resizable=yes,width=320,height=480');
}

function openWindowC3() {
  x = (screen.width - w) / 2;
  y = (screen.height - h) / 2;  
    subWin = window.open("access_p.html","OpenWindow",
    'scrollbars=no,resizable=yes,width=578,height=480');
}

//-->
