// JavaScript Document
<!--
function confirmation(url) {
	var answer = confirm("You have requested to access a page that is external to the Quimper Community Federal Credit Union Website.\n Before proceeding, please be aware that:\n\n • You are leaving the credit union's website\n • You are linking to an alternative site that is not operated by the credit union\n • The credit union is not responsible for the content or availability of the alternative site\n • The credit union does not represent either the third party or the member if the two enter into a transaction\n • The third party's privacy and security policies may differ from those practiced by the credit union. \n\nDo you want to continue?")
	if (answer){
		window.open(url);
	}
	else{
	}
}
//-->