// JavaScript Document
			function CheckEmail (strng) 
			{
				var error="";

				if (strng == "") {
					error = "You didn't enter an E-mail address.";
				}

			    var emailFilter=/^.+@.+\..{2,3}$/;
			    if (!(emailFilter.test(strng))) { 
					error = "Please enter a valid E-mail address.";
				}
				else {
					//test email for illegal characters
					var illegalChars= /[\(\)\<\>\,\;\:\\\"\[\]]/
					if (strng.match(illegalChars)) {
    	    			error = "The E-Mail address contains illegal characters.";
    	   			}
    			}
				return error;    
			}
		
			function FormValidate()
			{
				var error;

				if (document.form1.Email3.value != "1AUH38")
				{
					alert("You enter the Security code before continuing.");
					document.form1.Email3.focus();
					document.form1.Email3.select();
					return false;
				}
				return (true);
			}
