Window Browser JavaScript DHTML



Recipe 6.6

var newWindow;
function makeNewWindow() {
    if (!newWindow || newWindow.closed) {
        newWindow = window.open("","sub","status,height=200,width=300");
        setTimeout("writeToWindow()", 50);
    } else if (newWindow.focus) {
        newWindow.focus();
    }
}
function writeToWindow() {
    var newContent = "Secondary  Window";
    newContent += "

This is a script-created window.

";
    newContent += "";
    newWindow.document.write(newContent);
    newWindow.document.close();
}



Communicating with a New Window