Window Browser JavaScript DHTML

/*
JavaScript Bible, Fourth Edition
by Danny Goodman 
John Wiley & Sons CopyRight 2001
*/


Window Focus() and Blur()

// declare global variable name
var newWindow = null
function makeNewWindow() {
    // check if window already exists
    if (!newWindow || newWindow.closed) {
        // store new window object in global variable
        newWindow = window.open("","","width=250,height=250")
        // pause briefly to let IE3 window finish opening
        setTimeout("fillWindow()",100)
    } else {
        // window already exists, so bring it forward
        newWindow.focus()
    }
}
// assemble new content and write to subwindow
function fillWindow() {
    var newContent = "Another Subwindow"
    newContent += ""
    newContent += "

A Salmon-Colored Subwindow.

"
    newContent += "
"
    // the following button doesn't work in NN6
    newContent += ""
    newContent += ""
    // write HTML to new window document
newWindow.document.write(newContent)
    newWindow.document.close()
}



Window focus() and blur() Methods