// Global Variables //
	var _isIE = (navigator.appName == "Microsoft Internet Explorer");
	if (_isIE) {
		var _outLinkMsg = "Republic Bank has no control over information at any site hyperlinked to from this Site and makes no\n";
		_outLinkMsg += "representation concerning and is not responsible for the quality, content, nature, or reliability of any hyperlinked site \n";
		_outLinkMsg += "and is providing this hyperlink to you only as a convenience. The inclusion of any hyperlink does not imply any \n";
		_outLinkMsg += "endorsement, investigation, verification or monitoring by Republic Bank of any information in any hyperlinked \n";
		_outLinkMsg += "site. In no event shall Republic Bank be responsible for your use of a hyperlinked site. To remain at our site, \n";
		_outLinkMsg += "click Cancel. To leave our site for the link you selected, click OK. Thank you for visiting our site.";
	} else {
		var _outLinkMsg = "Republic Bank has no control over information at any site hyperlinked to from this Site and makes no representation concerning and is not responsible for the quality, content, ";
		_outLinkMsg += "nature, or reliability of any hyperlinked site  and is providing this hyperlink to you only as a convenience. The inclusion of any hyperlink does not imply any endorsement, investigation, ";
		_outLinkMsg += "verification or monitoring by Republic Bank of any information in any hyperlinked site. In no event shall Republic Bank be responsible for your use of a hyperlinked site. To remain ";
		_outLinkMsg += "at our site, click Cancel. To leave our site for the link you selected, click OK. Thank you for visiting our site.";
	}


	// Manage out links //
	outLink = function(_url) {
		if (confirm(_outLinkMsg)) {
			if (_isIE) {
				window.open(_url);
			} else {
				window.open(_url,_url);
			}
		}
	}

