	
		<!-- Hide script from older browsers
		re = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/

		function submitIt(myForm) {
			if (re.test(myForm.email.value)) {
				return true
			}
			alert("Invalid email address")
			myForm.email.focus()
			myForm.email.select()
			return false
		}

		End hiding script -->
