/********************************************************************
 * Scripts to support newsroom functions.
 ********************************************************************/

// Ignore window close on BlackBerries, they do not really open a popup.
function CloseWindow() {
    if (window.opener != window.self) {  // child window
        window.close();
        return false;
    }
    else if (window.history.length) {   // window has history
        window.history.back();
        return false;
    }
    else {
        return true;
    }
}