
GloScope = {
    newWinName : "siteViewer",    
    newWinCustomOptions : "scrollbars=yes, resizable=yes, toolbar=no, location=no, status=no",  
    newWinOptions : "height=400, width=600, scrollbars=yes, resizable=yes, toolbar=no, location=no, status=no",    
    newFeaturedWinName : "featuredSiteViewer",
    newFeaturedWinOptions : "height=400, width=600, scrollbars=yes, resizable=yes, toolbar=yes, location=yes, status=yes",    
    openWindow : GloScope_newWin,
    openFeaturedWindow : GloScope_newFeaturedWin,
    openSizedWindow : GloScope_newWinSized
};


function GloScope_newWin(strUrl) {
    window.open(strUrl, GloScope.newWinName, GloScope.newWinOptions, false).focus();
    return true;
}

function GloScope_newFeaturedWin(strUrl) {
    window.open(strUrl, GloScope.newFeaturedWinName, GloScope.newFeaturedWinOptions, false).focus();
    return true;
}

function GloScope_newWinSized(strUrl, iHeight, iWidth ) {
    window.open(strUrl, GloScope.newWinName + "Sized", "height=" + iHeight + ", width=" + iWidth + ", " + GloScope.newWinCustomOptions, false).focus();
    return true;
}
