Window JavaScript Tutorial

< html>

Document Open/Close Example


Due to new popup blockers, this code can only run when you click the following button:




   function showPopup() {
      var oNewWin = window.open("about:blank", "newwindow", "height=150,width=300,top=10,left=10,resizable=yes");
      oNewWin.document.open();
      oNewWin.document.write("New Window");
      oNewWin.document.write("This is a new window!");
      oNewWin.document.close();
   }