function detailWindow(n) {
//相対パスの違いトップページ用
switch(n){
        case 1: winOp = new Array("top/emit.html",476,440,0,0,0,0,0,0); break;
        case 2: winOp = new Array("info/index.html",560,540,0,0,0,1,0,0); break;
        case 3: winOp = new Array("info/emitform.html",720,540,1,0,0,1,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],"info",winopStr);
popWin.focus(); return;
}