function offsiteLinkWarning(url, message, openNewWindow, company)
{
    if (message.length <= 0)
    {
	message = "Please Note: this link will direct you away from the First Security Bank website.  First Security Bank does not provide and is not responsible for external website's content or performance. First Security Bank suggests you consult the Privacy Disclosure on those sites for further information. After clicking continue, should you not immediately see the content you are seeking, please check your browser tab. Some browsers open new windows behind the screen you are currently viewing.";

	/*
        message = "You are leaving " + company + ".\n\n" + "By clicking Continue, you will be taken to a website that is not affiliated with " + company + " and may offer a different privacy policy and level of security. " + company + " is not responsible for and does not endorse, guarantee or monitor content, availability, viewpoints, products or services that are offered or expressed on other websites.\n\nYou can click the Cancel button now to return to the previous page."; 
    	*/
    }
    else
    {
        for (var i = 0; i < 20; i++)
        {
            message = message.replace("||", "\n");
        }
    }
    var ok = window.confirm(message);
    if (ok == true)
    {
        if (openNewWindow.toLowerCase() == 'true')
        {
            window.open(url);
        }
        else
        {
            window.location.href = url;
        }
    }
}

