	function FrontPage_Form1_Validator(FrontPage_Form1)
		{
		
		  if (theForm.IndustryID.selectedIndex == 0)
		  {
			alert("The first \"Industry\" option is not a valid selection.  Please choose one of the other options.");
			theForm.IndustryID.focus();
			return (false);
		  }
		
		  if (theForm.FunctionID.selectedIndex == 0)
		  {
			alert("The first \"Function\" option is not a valid selection.  Please choose one of the other options.");
			theForm.FunctionID.focus();
			return (false);
		  }
		
		  if (theForm.JobTitle.value == "")
		  {
			alert("Please enter a value for the \"Job Title\" field.");
			theForm.JobTitle.focus();
			return (false);
		  }
		
		  if (theForm.JobTitle.value.length > 100)
		  {
			alert("Please enter at most 100 characters in the \"Job Title\" field.");
			theForm.JobTitle.focus();
			return (false);
		  }
		  return (true);
		}

