			function confirmSubmit() {
			  if (document.hunters.FirstName.value == '') {
			    alert("Sorry, you need to provide your First Name!");
			    document.hunters.FirstName.focus();
			  }
			  else if (document.hunters.LastName.value == '') {
			    alert("Sorry, you need to provide your Last Name!");
			    document.hunters.LastName.focus();
			  }
			  else if (document.hunters.Email1.value == '') {
			    alert("Sorry, you need to provide your Email!");
			    document.hunters.Email1.focus();
			  }
			  else if (document.hunters.Email2.value == '') {
			    alert("Sorry, you need to confirm your Email!");
			    document.hunters.Email2.focus();
			  }
			  else if (document.hunters.Email2.value != document.hunters.Email1.value) {
			    alert("Sorry, your Email and Confirm Email do not match!");
			    document.hunters.Email1.focus();
			  }
			  else if (isValidEmail(document.hunters.Email1.value) == false) {
			    alert("Sorry, your Email appears to be invalid!\nPlease provide a properly formed email address.");
			    document.hunters.Email1.focus();
			  }
			  else if (document.hunters.Password.value == '') {
			    alert("Sorry, you need to provide a Password!");
			    document.hunters.Password.focus();
			  }
			  else {
			    document.hunters.submit();
			  }
			}