﻿//ポップアップ
function detailWindow(n) {
switch(n){
        case 1: winOp = new Array("demo/index.html",1024,768,0,1,0,0,0,0,0); break;
        default: alert("Sorry, no detailed information.");return;}
winopStr = "top=0,left=0,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],"newwin",winopStr);
popWin.window.resizeTo(screen.width,screen.height);
popWin.focus(); return;
}

