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;
     }
		 
		 confirm("Thank-you! Your application will be emailed to Ed Tripp.\nPlease don't forget to mail your check to Ed at \n\nEd Tripp\n120 Fox Trail Terrace\nGaithersburg, MD 20878"); 
	
	    return true;
}