function openDialog(url,theName, width, height, bResize,tbar, bLoc, mbar, stat, bScroll) { var theleft; var thetop; if (!theName){theName='dlog';} if (!width){width=640;} if (!height){height=480;} if (!bResize){bResize="yes";} if (!tbar){tbar="no";} if (!bLoc){bLoc="no";} if (!mbar){mbar="no";} if (!stat){stat="no";} if (!bScroll){bScroll="no";} if (document.layers) { theleft = window.screenX + ((window.outerWidth - width) / 2); thetop = window.screenY + ((window.outerHeight - height) / 2); var attr = "screenX=" + theleft + ",screenY=" + thetop + ",scrollbars=" + bScroll + ",status=" + stat + ", menubar=" + mbar + ", toolbar=" + tbar + ", location=" + bLoc + ", resizable=" + bResize + ",width=" + width + ",height=" + height; } else { theleft = ((screen.width - width) / 2); thetop = ((screen.height - height) / 2); var attr = "left=" + theleft + ",top=" + thetop + ",scrollbars=" + bScroll + ",status=" + stat + ", menubar=" + mbar + ", toolbar=" + tbar + ", location=" + bLoc + ", resizable=" + bResize + ",width=" + width + ",height=" + height; } thewin=window.open(url,theName, attr); thewin.focus(); }
