// list of domains names or ip addresses that do not need the pop-up disclaimer 
// 1) separate items with semi-colons
// 2) do not begin or end the string (inside the quotes) with a semi-colon
// 3) do not put 2 semi-colons consecutively
// 4) you must use the variable names of strDomainFilters, strMessage and strEmailMsg
var strDomainFilters = "66.29.199.143;ufsfcu.org;ufsfcu.com;ufsfcu.net;summit-ol.com;mortgagewebcenter.com;creditunionwebsites.com";

var strMessage = "You are leaving the United Financial Services Community Federal Credit Union Web site.\n\nThe Web site you are linking to is not operated by United Financial Services Community Federal Credit Union.\n\nWe are not responsible for any content or information posted to this external Web site.\n\nUnited Financial Services Community Federal Credit Union is not responsible for, nor do we represent you or the External Web site if you enter into any agreements.\n\nPrivacy and Security policies may differ between our web site and this external site.";

var strEmailMsg = ""

var strPromptUserMsg = "Your browser settings are blocking the popup window.";

// ********************************************************************
// ***                             DO NOT EDIT BELOW THIS POINT                                         ***
// ********************************************************************

// javascript include file that contains all functionality and is common to all sites.
document.write('<script type="text/javascript" src="/commonutils/scripts/externallinks_utils.js"><\/script>') ;

// ********************************************************************
// these two scripts are used in the navigation to control the External Links and New window features.
// ********************************************************************
function popWin(strURL) {
	window.open(strURL,"newWin"); 
}		

function linkto_externalSite(strURL) {
	if(confirm(strMessage)) {
		window.open(strURL,"","");
	}
}

