//ポップアップ
function detailWindow(n) {
switch(n){
        case 1: winOp = new Array("top/check.html",720,580,1,1,0,0,0,0); break;
        case 2: winOp = new Array("top/advice.html",720,580,1,1,0,0,0,0); break;
        default: alert("Sorry, no detailed information.");return;}
winopStr = "top=10,left=10,width="+winOp[1]+",height="+winOp[2]+",scrollbars="+winOp[3]+",resizable="+winOp[4]+",toolbar="+winOp[5]+",menubar="+winOp[6]+",location="+winOp[7]+",directories="+winOp[8]+",status="+winOp[9]+"";
popWin = window.open(winOp[0],"howpay",winopStr);
popWin.window.resizeTo(winOp[1],winOp[2]);
popWin.focus(); return;
}
