<!--
		function HideDIV(d) { document.getElementById(d).style.display = "none"; }
		
		function DisplayDIV(d) { document.getElementById(d).style.display = "block"; }
		
		function EmailForm_Validator(theForm)
   {




   if (theForm.email.value == "")
   {
     alert("Please enter your E-mail address.");
     theForm.email.focus();
     return (false);
   }




   if (theForm.email.value.indexOf("@")==-1)
   {
     alert("Please enter a valid E-mail address.");
     theForm.email.focus();
     return (false);
   }




   if (theForm.email.value.indexOf(".")==-1)
   {
     alert("Please enter a valid E-mail address.");
     theForm.email.focus();
     return (false);
   }




   if (theForm.EMAIL.value.indexOf(".")==-1)
   {
     alert("Please enter a valid E-mail address.");
     theForm.email.focus();
     return (false);
   }




   if (theForm.email.value.length < 5)
   {
     alert("Please enter your complete E-Mail address.");
     theForm.email.focus();
     return (false);
   }
   return (true);
}
   function filterNum(str) {
   re = /\$| |,|@|#|~|`|\%|\*|\^|\&|\(|\)|\ |\+|\=|\[|\-|\_|\]|\[|\}|\{|\;|\:|\'|\"|\<|\>|\?|\||\\|\!|\$|\./g;
   // removes special characters like "." "space" "," etc...
   return str.replace(re, "");
   }



//-->