// Check browser configuration for Health and Safety courses

var newHSCWindow

function checkHSCMin() {

if (!newHSCWindow || newHSCWindow.closed) {
    // create the window
    newHSCWindow = window.open("http://www.avilar.com/support/carelearning/test_hsc_min2009.asp","HSCChecker","width=375,height=350,scrollbars")

    // Create .opener property if necessary for old browsers.
    if (!newHSCWindow.opener) {
        newHSCWindow.opener = window
    }
} else {
    // window's already open; bring to front
    newHSCWindow.focus()
    }
}

