function externalLinks() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=anchors.length-1; i>=0; i--) {
		var anchor = anchors[i];
		if (anchor.href && anchor.href.substr(0,4) == "http") {
		    //check for our domains before warning
		    if (!anchor.href.match(/^.+(vcu.com|vcu.dev|br-dev-drupal|localhost|127.0.0.1|199.217.150.52|vcu.mortgagewebcenter.com|mortgagewebcenter.com|investmentservicesgroup.com|iraservicecenter.com)(.*)?$/g)) {
		 		anchor.target = "_blank";
		  		anchor.onclick = function() { if (!confirm('You are about to leave the Vantage Credit Union Web site to a site not operated by Vantage. Vantage is not responsible for the content of this alternate site and does not represent either the alternate site or the member if the two enter into a transaction. Privacy and security policies of alternate site may differ from those practiced by Vantage.\n\n\nAre you sure you want to proceed?')) { return false; } };
			}
		}
	}
}