// JavaScript Document
<!--
function validateForm(thisForm){
	if (thisForm.regFirstName.value == "") {
		alert("You must enter your first name.");
		thisForm.regFirstName.focus();
		return false;
	} else if (thisForm.regLastName.value == "") {
		alert("You must enter your last name.");
		thisForm.regLastName.focus();
		return false;
	} else if (thisForm.regAddress1.value == "") {
		alert("You must enter your address.");
		thisForm.regAddress1.focus();
		return false;
	} else if (thisForm.regCity.value == "") {
		alert("You must enter your city.");
		thisForm.regCity.focus();
		return false;
	} else if (thisForm.regState.value == 0) {
		alert("You must select a state.");
		thisForm.regState.focus();
		return false;
	} else if (thisForm.regZip.value == "") {
		alert("You must enter your postal code.");
		thisForm.regZip.focus();
		return false;
	} else if (thisForm.regCountry.value == "") {
		alert("You must enter your country.");
		thisForm.regCountry.focus();
		return false;
	} else if (thisForm.regPhone.value == "") {
		alert("You must enter your day phone.");
		thisForm.regDayPhone.focus();
		return false;
	} else if (thisForm.regEmail.value == "") {
		alert("You must enter an email address.");
		thisForm.regEmail.focus();
		return false;
	} else if (thisForm.regEmailVerify.value == "") {
		alert("You must enter an email address.");
		thisForm.regEmail.focus();
		return false;
	} else if (thisForm.regEmail.value != thisForm.regEmailVerify.value) {
		alert("Your emails do not match.");
		thisForm.regEmailVerify.focus();
		return false;
	} else if (thisForm.regPassword.value == "") {
		alert("You must enter a password.");
		thisForm.regPassword.focus();
		return false;
	} else if (thisForm.regPasswordVerify.value == "") {
		alert("You must confirm your password.");
		thisForm.regPasswordVerify.focus();
		return false;
	} else if (thisForm.regPassword.value != thisForm.regPasswordVerify.value) {
		alert("Your passwords do not match.");
		thisForm.regPasswordVerify.focus();
		return false;
	} else if (thisForm.regSecurityAnswer.value == "") {
		alert("You must enter a security answer.");
		thisForm.regSecurityAnswer.focus();
		return false;
	}  else if (thisForm.regAgreement.checked == false) {
		alert("You must agree with the license to continue.");
		thisForm.regAgreement.focus();
		return false;
	}
}
// End -->
