// JavaScript Document

		<!-- Hide script from older browsers

		function validForm(passForm) {
			if (passForm.passwd1.value == "") {
				alert("You must enter the validation code")
				passForm.passwd1.focus()
				return false
			}
			if (passForm.passwd1.value != "r3xt2b") {
				alert("Your validation code is incorrect. Please enter the code exactly as it appears in the graphic")
				passForm.passwd1.focus()
				passForm.passwd1.select()
				return false
			}
			return true
		}
		
		// End hiding script -->
