	<!-- Hide script from old browsers
      function valiDate(testForm) {
		if (testForm.verify.value.toUpperCase() != "P3F9E") {
			alert("Incorrect Validation Entry - please revalidate.");
			testForm.verify.focus();
			return false;
			}
		}
		
	function formValidate(testForm) {
		if (testForm.From.value == "") {
			alert("Please enter your e-mail address in the 'E-mail' field.");
			testForm.From.focus();
			return false;
			}
// the script below will do a preliminary check if the name is email
		else {
			var lcMail = testForm.From.value
			var lnAt = lcMail.split("@")
			if (lnAt.length < 2) {
				alert("Please enter a valid address for the 'E-mail' field.");
				testForm.From.focus();
				return false;
				}
			var lnAt1 = lnAt[1].split(".")
			if (lnAt1.length < 2) {
				alert("Please enter a valid address for the 'E-mail' field.");
				testForm.From.focus();
				return false;
				}
			}
		if (testForm.comments.value == "Enter comments here") {
			testForm.comments.value = "";
			}

		}
	// End hiding script from old browsers -->
