// JavaScript Document
<!--
function confirmation(url) {
	var answer = confirm("PCEFCU is offering this link for your convenience. This link will take you away from our site. PCEFCU is not endorsing or guaranteeing the products, information, or recommendations provided by the linked site.  PCEFCU is not liable for any failure of products or services advertised on that site. PCEFCU does not represent either the third party or our member if the two enter into a transaction. The third party’s privacy and security policies may differ from those of the Credit Union. \n\nDo you want to continue?")
	if (answer){
		window.open(url);
	}
	else{
	}
}
//-->