function FrontPage_Form1_Validator(theForm)
{
  
  if (theForm.name.value == "")
  {    alert("Please enter a name in the \"Presentation Requester\" field.");
    theForm.name.focus();
    return (false);  }

  if (theForm.phone.value == "")
  {    alert("Please enter a valid phone number in the \"Phone Number\" field.");
    theForm.phone.focus();
    return (false);  }
	
	  if (theForm.cc.value == "")
  {    alert("Please enter an email address for the \"Email Address\" field.");
    theForm.cc.focus();
    return (false);  }

  if (theForm.datebox.value == "")
  {    alert("Please select a date for the \"Date Needed\" field.");
    theForm.datebox.focus();
    return (false);  }

  if (theForm.time.value == "")
  {    alert("Please select a time for the \"Start Time\" field.");
    theForm.time.focus();
    return (false);  }

  if (theForm.length.value == "")
  {    alert("Please enter a duration in the \"Length of Presentation\" field.");
    theForm.length.focus();
    return (false);  }
	
	  if (theForm.location.value == "")
  {    alert("Please enter a place in the \"Location of Presentation\" field.");
    theForm.location.focus();
    return (false);  }
	
	  if (theForm.audience.value == "")
  {    alert("Please indicate an audience in the \"Type of Group that will be in Attendance\" field.");
    theForm.audience.focus();
    return (false);  }
	
  if (theForm.size.value == "")
  {    alert("Please enter a size for the \"Approximate Size of Audience\" field.");
    theForm.size.focus();
    return (false);  }

	  if (theForm.topics.value == "")
  {    alert("Please select a topic from the \"Available Topics\" list.");
    theForm.topics.focus();
    return (false);  }
	
 return (true);}

