/* 
	Copyright Central National Bank
	All rights reserved.
	7/18/2006
*/

function showEmailNotice(){
	var msg = "";
	msg = "NOTE: To ensure confidentiality, we do not recommend using e-mail to\n" +
		   "communicate non-public or confidential information (account numbers,\n" +
		   "Social Security Number, etc.).  If you have an account-related question,\n" +
		   "please use our secure form by clicking on the Contact Us link at the\n" +
		   "bottom of any page.  You may also call 1-888-262-5456 or stop by one\n" +
		   "of our Central National Bank locations.\n\n" +
		   "Please be aware that when we reply to your e-mail, it may come as a\n" +
		   "secure e-mail.  You will need to create a password and log into a secure\n" + 
		   "web site to view the e-mail."
	return confirm(msg);
}
  

