function detailWindow(url,winw,winh) {
winOp = new Array(url,winw,winh,0,0,0,0,0,0);
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;
}
