function email_warning() 
{
 var msg='For your protection, please do not send email messages containing personal financial information. Do not include member numbers, account numbers, social security numbers or any other sensitive data of this nature in your correspondence. '
	if(confirm(msg))
	{
		return true;
    }
	else 
		return false;
}


function open_window(url) 
{
 var msg="You are leaving the Stamford Health System Credit Union's web site;\n" + 
 "You are linking to an alternate web site not operated by the Stamford Health System Credit Union;\n" +
 "Stamford Health System Credit Union is not responsible for the content of the alternate web site;\n" +
 "Stamford Health System Credit Union does not represent either the third party or the member if the two enter into a transaction; and,\n" +
 "Privacy and security policies may differ from those practiced by Stamford Health System Credit Union."     
	if(confirm(msg)){
  	window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=750,height=425');
 }
}
