function FrontPage_Form_Validator(theForm)
{

	//alert("coucou");
    //return (false);
		
  if (theForm.Nom.value.length < 3)
  {
    alert("Veuillez renseigner le \"Nom - Prènom\".");
    theForm.Ville.focus();
    return (false);
  }

  if (theForm.Societe.value.length < 3)
  {
    alert("Veuillez renseigner la \"Société\".");
    theForm.Ville.focus();
    return (false);
  }

	if (theForm.Adresse.value.length < 3)
  {
    alert("Veuillez renseigner l\' \"Adresse\".");
    theForm.Ville.focus();
    return (false);
  }

  if (theForm.CodePostal.value.length < 4)
  {
    alert("Veuillez renseigner le \"Code Postal\".");
    theForm.Ville.focus();
    return (false);
  }

  if (theForm.Ville.value.length < 2)
  {
    alert("Veuillez renseigner la \"Ville\".");
    theForm.Ville.focus();
    return (false);
  }

  if (theForm.TelephoneBureau.value.length < 6)
  {
    alert("Tapez au moins 6 caractères dans le champ \"TelephoneBureau\".");
    theForm.TelephoneBureau.focus();
    return (false);
  }
  
  if (theForm.Email.value.length < 7)
  {
    alert("Veuillez renseigner l\'\"Adresse E-Mail\".");
    theForm.Ville.focus();
    return (false);
  }

}
