function checktheForm(CF_this)
{

	if ( !hasValue(CF_this.f_teamtypeid, "SELECT") ) { if (!onError(CF_this.f_teamtypeid, "You Must Select the Type of Judge you would like to be")) { return false; } }
	
	if ( !hasValue(CF_this.f_firstname, "TEXT") ) { if (!onError(CF_this.f_firstname, "You Must Enter the Judge's Full Name")) { return false; } }
	
	if ( !hasValue(CF_this.f_lastname, "TEXT") ) { if (!onError(CF_this.f_lastname, "You Must enter the Judge's Full Name")) { return false; } }
	
	if ( !hasValue(CF_this.f_address, "TEXT") ) { if (!onError(CF_this.f_address, "You Must enter the Address")) { return false; } }
	
	if ( !hasValue(CF_this.f_city, "TEXT") ) { if (!onError(CF_this.f_city, "You Must Enter a City")) { return false; } }

	if ( !hasValue(CF_this.f_state, "TEXT") ) { if (!onError(CF_this.f_state, "You Must Enter a State")) { return false; } }

	if ( !checkstate(CF_this.f_state.value) ) {	if (!onError(CF_this.f_state, "You Have Entered an Invalid State (ex: MO,CA)")) { return false; } }

	if ( !hasValue(CF_this.f_zip, "TEXT") ) { if (!onError(CF_this.f_zip, "You Must Enter a Zip Code")) { return false; } }

	if ( !checkzip(CF_this.f_zip.value) ) {	if (!onError(CF_this.f_zip, "You Have Entered an Invalid Zip Code (ex: 65804,91505)")) { return false; } }

	if ( !hasValue(CF_this.f_email, "TEXT") && !hasValue(CF_this.f_dayphone, "TEXT") && !hasValue(CF_this.f_eveningphone, "TEXT") ) { if (!onError(CF_this.f_dayphone, "You Must enter an Email Address or Phone Number so that We Can Contact You")) { return false; } }

	if ( hasValue(CF_this.f_dayphone, "TEXT") && !checkphone(CF_this.f_dayphone.value) ) { if (!onError(CF_this.f_dayphone, "You Have Entered an Invalid Home Phone Number")) { return false; } }

	if ( hasValue(CF_this.f_eveningphone, "TEXT") && !checkphone(CF_this.f_eveningphone.value) ) { if (!onError(CF_this.f_eveningphone, "You Have Entered an Invalid Evening Phone Number")) { return false; } }

	if ( hasValue(CF_this.f_email,"TEXT") && !checkemail(CF_this.f_email.value) ) { if (!onError(CF_this.f_email, "You Have Entered an Invalid Email Address")) { return false; } }

	if ( !hasValue(CF_this.f_certification, "TEXT") ) { if (!onError(CF_this.f_certification, "You Must enter 8 digit KCBS Certification Number")) { return false; } }

	if ( hasValue(CF_this.f_certification,"TEXT") && !regexp_cert(CF_this.f_certification.value) ) { if (!onError(CF_this.f_certification, "You Have Entered an Invalid Certification Number")) { return false; } }

	return true;

} //end checktheForm function