function ValidateForm(theForm) {

	if (IsMissing(theForm.firstname, 'First Name')) return false;
	if (IsMissing(theForm.lastname, 'Last Name')) return false;
	if (IsMissing(theForm.address1, 'Address Line 1')) return false;
	if (IsMissing(theForm.city, 'City')) return false;
	if (NotSelected(theForm.state,'State/Province'))  return false;
	if (IsMissing(theForm.zip, 'Zip/Postal Code')) return false;
//	if (NotSelected(theForm.country,'Country'))  return false;
	if (IsMissing(theForm.phone, 'Telephone')) return false;
	if (!checkEMail(theForm.email, 'E-mail')) return false;
	if (theForm.email.value == theForm.verifyemail.value) {} else {
		alert("The Verify E-mail address does not match the E-mail address.");
		theForm.email.focus();
		return false;
	}

	if (NotCheckChecked(theForm.huntinterested,'contact me when the clue hunt begins')) return false;

	return true;
}

function GoNext() {
	if (ValidateForm(window.document.Form1)) {window.document.Form1.submit();}

}

