// JS Lib for PacFed
// Dev By: 	Eric M. Gould
//
// eMail: 	superg19@gmail.com
//
//

// off site warning
// ---> loc = URL on confirm.
function osm(loc){
	var msg="You are leaving the credit union's website and linking to an alternate website not operated by the credit union. The credit union is not responsible for the content of the alternate website. The credit union does not represent either the third party or the member if the two enter into a transaction. Privacy and security policies may differ from those practiced by the credit union.";
	var locOut = loc;
	var leave = confirm(msg);
	if(leave){
		window.open(locOut);
	}else{
		return;
	}
}