
function validateSponsor() {
   errorMsg = "";

    
    with (document.myForm) {

	if (Sponsor.value.length < 5)	errorMsg += "\nYou must have a GPSEG Sponsor";
	if (SponsorEmail.value.length < 7)	errorMsg += "\nYou must enter a GPSEG Sponsor Email address";
	if (SponsorPhone.value.length < 10)	errorMsg += "\nYou must enter a GPSEG Sponsor Phone number";

//FINAL CHECK FOR ERROR MESSAGES
	if (errorMsg.length > 0) {
		errorMsg = "The following errors must be corrected before submitting this form: \n" + errorMsg
		alert (errorMsg);
		return false;
	}

   }	//end WITH

return true;
}
