// OpenPreApprovalLink()
// PURPOSE : quick way to open link in new window with alternate message.
// IMPLEMENTATION :
//    put "OpenPreApprovalLink('http://www.google.com');return false;" in
//    CMSDesk --> Edit --> Page --> Properties --> Menu --> Javascript Command

function OpenPreApprovalLink(strURL) {
	var strMsg = "The web site you are linking to is not operated by Dutch Point Credit Union.\n\nWe are not responsible for content or information posted to this external website.\n\nPrivacy and security policies may differ between our web site and this external site.";

    if (!confirm(strMsg)) {
		return;
    }
	
    window.open(strURL, '_blank');
}

