Window Browser JavaScript DHTML




     function showBox() {
             userText = prompt("Enter the text for your personalized browser window.","My own browser text");
           if (userText != null) {
              userWindow = window.open("", "userTextWindow", "toolbar=0");
              userWindow.document.write("

" + userText + "

") };
     }