function validateContactInfo(theForm)
{
    if (theForm.ParticipantName.value == "")
    {
        alert("Please enter the participant's name.");
        theForm.ParticipantName.focus();
        return false;
	   }
	
    if (theForm.CellPhone.value == "" && theForm.HomePhone.value == "")
    {
        alert("Please enter a phone number where we can contact you if necessary.");
        theForm.CellPhone.focus();
        return false;
    }
	
     if (theForm.Email.value == "")
     {
         alert("Please enter an email address where we can send you information about the program you're registering for.");
         theForm.Email.focus();
         return false;
     }
	
	    return true;
}