
  function checkform ( form )
  {
    // ** START **
    if (form.First_Name.value == "") {
      alert( "Please fill in the First Name field." );
      form.First_Name.focus();
      return false ;
    }
    if (form.Last_Name.value == "") {
      alert( "Please fill in the Last Name field." );
      form.Last_Name.focus();
      return false ;
    }
	  if (form.Company.value == "") {
      alert( "Please fill in the Company field." );
      form.Company.focus();
      return false ;
    }
	 if (form.Address1.value == "") {
      alert( "Please fill in the Address field." );
      form.Address1.focus();
      return false ;
    }

    if (form.City.value == "") {
      alert( "Please fill in the City field." );
      form.City.focus();
      return false ;
    }
    if (form.State.value == "Pick One") {
      alert( "Pick a State from the drop down menu." );
      form.State.focus();
      return false ;
    }
	   if (form.Zip.value == "") {
      alert( "Please fill in the Zip Code field." );
      form.Zip.focus();
      return false ;
    }
	  if (form.License.value == "") {
      alert( "Please fill in the License field." );
      form.License.focus();
      return false ;
    }

    if (form.email_from.value == "") {
      alert( "Please fill in the Email field." );
      form.email_from.focus();
      return false ;
    }
    if (form.Phone1.value == "") {
      alert( "Please fill in the Phone field." );
      form.Phone1.focus();
      return false ;
    }
	  if (form.Phone2.value == "") {
      alert( "Please fill in the Phone field." );
      form.Phone2.focus();
      return false ;
    }
	  if (form.Phone3.value == "") {
      alert( "Please fill in the Phone field." );
      form.Phone3.focus();
      return false ;
    }


    // ** END **
    return true ;
  }
