﻿
function OpenAtsWindow(SiteID)
{
    BaseURL = "https://sjobs.brassring.com/1033/ASP/TG/cim_home.asp";
    WbSessionID = "47A81E40-3450-4CAE-A23E-1AFA7EBCA92D";
    PartnerID = "25131";
    Width = "858";
    Height = "600";
    
    TargetURL = BaseURL + "?wbsessionid=" + WbSessionID + "&partnerid=" + PartnerID + "&siteid=" + SiteID;
    var AtsWindow = window.open(TargetURL,"AtsWindow","scrollbars=yes,menubar=yes,height=" + Height + ",width=" + Width + ",resizable=yes,toolbar=yes,location=yes,status=yes");
    AtsWindow.focus();
}

function OpenNewWindow(TargetURL)
{
    BaseURL = "https://sjobs.brassring.com/1033/ASP/TG/cim_home.asp";

    Width = "858";
    Height = "600";
    var BvNewWindow = window.open(TargetURL,"BvNewWindow","scrollbars=yes,menubar=yes,height=" + Height + ",width=" + Width + ",resizable=yes,toolbar=yes,location=yes,status=yes");
    BvNewWindow.focus();
}

// Utility function used to verify the CSS rendering mode of the browser
function CheckRenderMode()
{
    m = ( document.compatMode == "CSS1Compat" ) ? "Standards" : "Quirks";
    window.alert("Page rendered in "+m+"-mode.");
}

function DetectPopuBlocker(SiteID)
{
    var mine = window.open("","","width=1,height=1,left=0,top=0,scrollbars=no");
    if(mine)
    {
        var popUpsBlocked = false;
    }
    else
    {
        var popUpsBlocked = true;
    }
    mine.close()
    
    if(popUpsBlocked)
    {
        alert("You are using a popup blocker");
    }
}
