function FormDoc_Controle(theForm)
{
  if(theForm.nom.value == "")
  {
    alert("Veuillez saisir votre NOM");
    theForm.nom.focus();
    return(false);
  }
  if(theForm.prenom.value == "")
  {
    alert("Veuillez saisir votre PRENOM");
    theForm.prenom.focus();
    return(false);
  }
  if(theForm.adresse.value == "")
  {
    alert("Veuillez saisir votre ADRESSE");
    theForm.adresse.focus();
    return(false);
  }
  if(theForm.adresse.value.length > 200)
  {
    alert("Tapez au plus 200 caractères dans le champ \"ADRESSE\"");
    theForm.adresse.focus();
    return(false);
  }
  if(theForm.codepost.value == "")
  {
    alert("Veuillez saisir le CODE POSTAL de votre ville");
    theForm.codepost.focus();
    return(false);
  }
  if(theForm.ville.value == "")
  {
    alert("Veuillez saisir le nom de votre VILLE");
    theForm.ville.focus();
    return(false);
  }
  if(theForm.pays.value == "")
  {
    alert("Veuillez saisir le nom de votre PAYS");
    theForm.pays.focus();
    return(false);
  }
  if(theForm.email.value == "")
  {
    alert("Veuillez saisir votre adresse EMAIL");
    theForm.email.focus();
    return(false);
  }
  if(theForm.email.value.length < 7)
  {
    alert("Adresse EMAIL incorrecte");
    theForm.email.focus();
    return(false);
  }
  if(theForm.observations.value.length > 300)
  {
    alert("Tapez au plus 300 caractères dans le champ \"MESSAGE\"");
    theForm.observations.focus();
    return(false);
  }
  return(true);
}
