function detailWindow(n) {
switch(n){
        case 1: winOp = new Array("top/pop.html",300,400,0,0,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],"newwin",winopStr);
popWin.focus(); return;
}