﻿function DisclaimerLink(LinkURL)
{
    var _alertMessage = "The web site you are entering is an external site located on another server.  CoreFirst Bank & Trust has no ";
    _alertMessage += "responsibility for external web sites.  We do not endorse the information, content, presentation or accuracy ";
    _alertMessage += "of any external site linked to our own.";
    alert(_alertMessage);
    window.open(LinkURL, "NewLinkWindow");
}

function DisclaimerLinkConfirmation(LinkURL)
{
    var _alertMessage = "You are now leaving CoreFirst Bank & Trust's web site.  By continuing, you will leave www.corefirstbank.com and ";
    _alertMessage += "will be connected to a site that is not owned or monitored by CoreFirst Bank & Trust. ";
    _alertMessage += "Please be aware that the site you are navigating to may have different security features and privacy policies that vary ";
    _alertMessage += "from the standards of CoreFirst Bank & Trust.  CoreFirst Bank & Trust does not endorse or guarantee the ";
    _alertMessage += "information or products and services of the site and is not responsible for system functionality.";
    if (confirm(_alertMessage))
    {
        window.open(LinkURL, "ConfirmedLinkWindow");
    }
    else
    {
        return;
    }
}
