Hi, can anyone tell me why my function always opens the window at the top left of the screen?
function PopDetails(theWidth,theHeight,theURL){
windowprops = "width="+theWidth+",height="+theHeight+",location=no,menubar=no,personalbar=no,resizable=no,screenX=0,screenY=0,locationbar=no,scrollbars=no,directories=no,statusbar=no,toolbar=no";
FullDetailWin = window.open(theURL,'FullDetailWin', windowprops);
FullDetailWin.focus();
}
M@)
function PopDetails(theWidth,theHeight,theURL){
windowprops = "width="+theWidth+",height="+theHeight+",location=no,menubar=no,personalbar=no,resizable=no,screenX=0,screenY=0,locationbar=no,scrollbars=no,directories=no,statusbar=no,toolbar=no";
FullDetailWin = window.open(theURL,'FullDetailWin', windowprops);
FullDetailWin.focus();
}
M@)