function newWindow(newContent, newEmail)
{
  window.open('mailto:' + newEmail,'eMail');
  var winContent = window.open(newContent, 'eMailWarning','width=450,height=350') ;
  
   if (winContent==null || typeof(winContent)=="undefined") alert("Email Security\nPlease be advised that regular email is not secure. Various parts of our Web site allow you to submit information to us by email. We strongly suggest that you do not provide personal or account information through email or make a request that sensitive and confidential information be emailed to you. We do have multi-layered security checks and balances in place to protect your personal and financial information when using our secure online services.");
   else 	 
   winContent.focus()
}