// JavaScript Document
<!--
function confirmation(url) {
	var answer = confirm("You are now leaving the Credit Union's website. Please note that the website you will be visiting is not operated by the Credit Union and that the Credit Union is not responsible for the content or availability of that website.\n\nWe make no representations either to the third party or the member if they enter into a transaction. The third party website you are going to visit may have different privacy and security policies from that of the Credit Union.")
	if (answer){
		window.open(url);
	}
	else{
	}
}
//-->
