<Script language=javascript1.2>... var oNewWin=window.open("about:blank","newwindow","height=150,width=300,top=10,left=10,resizable=yes"); oNewWin.document.open(); oNewWin.document.write("<html><head><title>New Window</title></head>"); oNewWin.document.write("<body>this is a new window!</body></html>"); oNewWin.document.close(); </Script>