/* Special purpose routine to check the fields that are supposed to be filled have been filled
   or else return back to the form. */
function contactForm(theForm) {
  allCorrect=true ;
  
  if (theForm.FirstName.value=="" || 
      theForm.LastName.value=="" ||
	  theForm.Phone.value=="" ||
	  theForm.Email.value=="" ) {
    allCorrect=false ;
  }
  if (allCorrect==false)
  {
    alert("Please fill in all fields marked *") ;
	return false ;
  } 
    return true ;
}
