Javascript Objects JavaScript DHTML



  
  
    function showBox() {
      userText = "My own browser text";
      if (userText != null) {
        userWindow = window.open("", "userTextWindow", "toolbar=0,width=200,height=200");
        userWindow.document.write(userText);
        userWindow.document.close();
      }
    }