var message = "You must leave Guaranty Bank's website to get the information you requested.  Please review the privacy notice of the site you are visiting so that you will know how your personal information will be collected and used.  While we monitor the websites we provide links for, we are not responsible for the content, changes, and updates of these sites.  To return to Guaranty Bank's website after you've accessed the site, close top window.";
var links = document.getElementsByTagName("a");
for(var i=0; i<links.length; i++) {
	var l = links[i];
	if(!(l.href.indexOf("guaranty-bank.com") >= 0 || l.href.indexOf("69.183.213.226") >= 0)) {
		l.target = "external";
		l.onclick = function() {
			alert(message);
			window.open(site, "asdf");			
		}
	}
}
