function FrontPage_Form2_Validator(theForm)
{

  if (theForm.full_name.value == "")
  {
    alert("Please enter a value for the \"Contact_Name\" field.");
    theForm.full_name.focus();
    return (false);
  }

  if (theForm.sender_email.value == "")
  {
    alert("Please enter a value for the \"Email\" field.");
    theForm.sender_email.focus();
    return (false);
  }

  if (theForm.company_name.value == "")
  {
    alert("Please enter a value for the \"Company_Name\" field.");
    theForm.company_name.focus();
    return (false);
  }

  if (theForm.address.value == "")
  {
    alert("Please enter a value for the \"Address\" field.");
    theForm.address.focus();
    return (false);
  }

  if (theForm.city.value == "")
  {
    alert("Please enter a value for the \"City\" field.");
    theForm.city.focus();
    return (false);
  }

  if (theForm.zipcode.value == "")
  {
    alert("Please enter a value for the \"Zip\" field.");
    theForm.zipcode.focus();
    return (false);
  }

  if (theForm.contact_number.value == "")
  {
    alert("Please enter a value for the \"Phone_Number\" field.");
    theForm.contact_number.focus();
    return (false);
  }
  return (true);
}

function FrontPage_Form1_Validator(theForm)
{

  if (theForm.full_name.value == "")
  {
    alert("Please enter a value for the \"Contact_Name\" field.");
    theForm.full_name.focus();
    return (false);
  }

  if (theForm.sender_email.value == "")
  {
    alert("Please enter a value for the \"Email\" field.");
    theForm.sender_email.focus();
    return (false);
  }

  if (theForm.company_name.value == "")
  {
    alert("Please enter a value for the \"Company_Name\" field.");
    theForm.company_name.focus();
    return (false);
  }

  if (theForm.address.value == "")
  {
    alert("Please enter a value for the \"Address\" field.");
    theForm.address.focus();
    return (false);
  }

  if (theForm.city.value == "")
  {
    alert("Please enter a value for the \"City\" field.");
    theForm.city.focus();
    return (false);
  }

  if (theForm.zipcode.value == "")
  {
    alert("Please enter a value for the \"Zip\" field.");
    theForm.zipcode.focus();
    return (false);
  }

  if (theForm.contact_number.value == "")
  {
    alert("Please enter a value for the \"Phone_Number\" field.");
    theForm.contact_number.focus();
    return (false);
  }

  if (theForm.radius.selectedIndex < 0)
  {
    alert("Please select one of the \"Radius_of_Operation\" options.");
    theForm.radius.focus();
    return (false);
  }

  if (theForm.radius.selectedIndex == 0)
  {
    alert("The first \"Radius_of_Operation\" option is not a valid selection.  Please choose one of the other options.");
    theForm.radius.focus();
    return (false);
  }
  if(theForm.years.value == "") {
  	window.alert("Please select the years in business");
	theForm.years.focus();
	return false;
  }
  return (true);
}
