// JavaScript Document
<!--
function confirmation(url) {
	var answer = confirm("You are about to leave PUDFCU.coop. Before proceeding, please note 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 should the\n    two enter into a transaction\n � The third party's privacy and security policies may differ from those practiced by the\n    credit union.")
	if (answer){
		window.open(url);
	}
	else{
	}
}
//-->
