// JavaScript Document
msg = "You are now leaving the City of Downey Federal Credit Union website for one of our sponsored vendor’s website. The credit union does not have control over the content and services of this website and cannot guarantee or warrant the information it provides. The vendor does not represent the views of the credit union and cannot enter into an agreement on behalf of the credit union. Please be aware that the vendor may not share the credit union's privacy policy.\n\nDo you want to proceed?";
mmsg = "You are about to send an e-mail to a representative of one of City of Downey Federal Credit Union's sponsored vendor. The vendor does not represent the credit union and cannot make any claims or guarantees on behalf of the credit union. Please be aware that the vendor may not share the credit union's privacy policy.\n\nDo you want to proceed?";

function ConfirmLink(link){
	var ans;
	ans=confirm(msg);
	if(ans==true){
		location.href=link
	}
}

function ConfirmEmail(link){
	var ans;
	ans=confirm(mmsg);
	if(ans==true){
		location.href=link
	}
}