<!--
function checkJudge(form){

	if(form.password.value == "") {
		alert("Please enter a password to create an account");
     		form.password.focus();
      		return false;
	}

	if(form.last.value == "") {
		alert("Please enter your last name");
     		form.last.focus();
      		return false;
	}
	if(form.first.value == "") {
		alert("Please enter your first name");
     		form.first.focus();
      		return false;
	}
	if(form.address.value == "") {
		alert("Please enter your street address");
     		form.address.focus();
      		return false;
	}
	if(form.city.value == "") {
		alert("Please enter your city");
     		form.city.focus();
      		return false;
	}
	if(form.state.value == "") {
		alert("Please select a state");
     		form.state.focus();
      		return false;
	}
	if ((form.state.selectedIndex == 0) || (form.state.selectedIndex == 1)) {
	  if (form.country.selectedIndex == 0) {
		alert("For addresses in the United States, please select a value from the \"State\" field.");
		form.state.focus();
		return (false);
	  }
	}
	if (form.state.selectedIndex >= 2) {
	  if (form.country.selectedIndex != 0) {
		alert("For addresses outside the United States, please select an appropriate value from the \"Country\" field.");
		form.country.focus();
		return (false);
	  }
	}
	if (form.country.selectedIndex >= 2) {
	  if (form.state.selectedIndex >= 2) {
		alert("For addresses outside the United States, please select an appropriate value from the \"State\" field.");
		form.state.focus();
		return (false);
	  }
	}
	if (form.country.selectedIndex == 1) {
		alert("This registration system is not meant for Canadian entries. Please go to www.alesclub.com to find the correct way to enter that region.");
		form.state.focus();
		return (false);
	}
	if ((form.state.selectedIndex == 1) && (form.prov.value == "")) {
		alert("For non-US locations, please enter your province");
     		form.prov.focus();
      		return false;
	}
	if(form.zip.value == "") {
		alert("Please enter your zip code");
     		form.zip.focus();
      		return false;
	}
	if(isNaN(form.zip.value) & (form.country.selectedIndex < 2)) {
		alert("Please enter a valid numeric 5-digit zip code");
     		form.zip.focus();
      		return false;
	}
	if((form.phoneha.value=="") || (form.phonehp.value=="") || (form.phonehn.value=="")) {
		alert("Please enter a valid numeric home phone number.");
		form.phoneha.focus();
		return false;
	}
	if((isNaN(form.phoneha.value)) || (isNaN(form.phonehp.value)) || (isNaN(form.phonehn.value))) {
		alert("Please enter a valid numeric home phone number.");
		form.phoneha.focus();
		return false;
	}
	if(form.email.value == "") {
		alert("Please enter your email address or N/A");
     		form.email.focus();
      		return false;
	}

	return true;
}

//-->



