// JavaScript Document
<!--
function confirmation(url) {
	var answer = confirm("Third Party Link Disclaimer:\n\nLinks to Third-Party web sites are provided for member convenience only. Credit\nUnion of the Berkshires does not endorse nor support the content of third party\nlinks.  The Credit Union is not responsible for the content of third party web site.\n\nBy clicking on a third party link, you will leave the Credit Union web site.  Privacy\nand security policies may differ from those practiced by the Credit Union.  Credit\nUnion of the Berkshires does not represent either the third party or the member\nif the two enter into a transaction.")
	if (answer){
		window.location=url;
	}
	else{
	}
}
//-->

