function externalLink() {
	var w = document.getElementsByTagName("a");
	for(var x=0; x<w.length; x++) {
		var y = new Array();
		y = w[x].href.split('/');
		for(var z=0; z<y.length; z++) {
			if(y[2] != window.location.host && y[2] != "carn18.sslcert19.com" && y[2] != "fcbins.agentinsure.com" && y[2] != "intranet.artizan.com" && y[2] != "www.fcbins.com") {
				w[x].onclick = function() {
						alert("Please note that you are leaving the web site of Fairfield County Bank Insurance Services, LLC. The link to the third party web site you have selected is provided solely as a matter of convenience to the visitors of Fairfield County Bank Insurance Services, LLC web site. The link is to a web site that is not affiliated with Fairfield County Bank Insurance Services, LLC. Your use of hyperlinks to web sites of others is at your own risk. The inclusion of a link to another web site does not constitute or imply an endorsement or warranty by Fairfield County Bank Insurance Services, LLC of that entity, or any product or service offered by that entity. The content, accuracy, and opinions expressed and other links provided by these resources are not investigated, verified, or monitored by Fairfield County Bank Insurance Services, LLC. Fairfield County Bank Insurance Services, LLC has no control or responsibility for the products and services offered through another entity's web site. Fairfield County Bank Insurance Services, LLC assumes no liability for the failure of any products or services to be delivered or to perform in accordance with any description or specification provided, or for the information provided on a linked web site. Other web site operators may collect information about you and use that information in accordance with their policies and procedures. If you have questions about another entity's use of your personal information, you should review that entity's privacy policies and/or ask that entity directly. A linked site could have less stringent security measures than Fairfield County Bank Insurance Services, LLC's web site. Fairfield County Bank Insurance Services, LLC is not responsible for another entity's use or protection of your information.");
						window.open(this.href,null);
						return false;
					}
				}
		}
	}
}	
window.onload=externalLink;