function lyrisForm(theForm)
{
  // Source: http://www.thesitewizard.com/archive/validation.shtml
  // Customized by Angela Wong

	if (theForm.email.value == "" || theForm.email.value == "...") {
    	alert( "Please enter your email." );
   		return false ;
	}
  
    if (theForm.name.value == "" || theForm.name.value == "...") {
    	alert( "Please enter your name." );
    	return false ;
	}
	
	// For student support http://www.ncpublicschools.org/studentsupport/egroup/
	if (theForm.district_code.value == "") {
    	alert( "Please enter your district." );
    	return false ;
	}
  
    if (theForm.occupation_.value == "") {
    	alert( "Please enter your occupation." );
    	return false ;
	}
  
    if (theForm.school_name.value == "" || theForm.school_name.value == "...") {
    	alert( "Please enter your school name." );
    	return false ;
	}


  return true ;
}
