<!--
function Forma_Validator(theForm)
{

  if (theForm.Fnom_asso.value == "")
  {
    alert("Tapez une valeur pour le champ Titre.");
    theForm.Fnom_asso.focus();
    return (false);
  }

  if (theForm.Fnom_asso.value.length < 10)
  {
    alert("Tapez au moins 10 caractères dans le champ Titre.");
    theForm.Fnom_asso.focus();
    return (false);
  }

  if (theForm.Fnom_ct.value == "")
  {
    alert("Tapez une valeur pour le champ Nom correspondant.");
    theForm.Fnom_ct.focus();
    return (false);
  }
  if (theForm.Fnom_ct.value.length < 5)
  {
    alert("Tapez au moins 5 caractères dans le champ Nom correspondant.");
    theForm.Fnom_ct.focus();
    return (false);
  }
 
  if (theForm.Fad1_ct.value == "")
  {
    alert("Tapez une valeur pour le champ adresse.");
    theForm.Fad1_ct.focus();
    return (false);
  }
  if (theForm.Fad1_ct.value.length < 3)
  {
    alert("Tapez au moins 3 caractères dans le champ adresse.");
    theForm.Fad1_ct.focus();
    return (false);
  }

  if (theForm.Fzip_ct.value == "")
  {
    alert("Tapez une valeur pour le champ code postale.");
    theForm.Fzip_ct.focus();
    return (false);
  }
  if (theForm.Fzip_ct.value.length < 4)
  {
    alert("Tapez au moins 4 caractères dans le champ code postale.");
    theForm.Fzip_ct.focus();
    return (false);
  }

  if (theForm.Fville_ct.value == "")
  {
    alert("Tapez une valeur pour le champ ville.");
    theForm.Fzip_ct.focus();
    return (false);
  }
  if (theForm.Fzip_ct.value.length < 4)
  {
    alert("Tapez au moins 4 caractères dans le champ ville.");
    theForm.Fzip_ct.focus();
    return (false);
  }

  if (theForm.Fmail_ct.value == "")
  {
    alert("Tapez une valeur pour le champ E-mail.");
    theForm.Fmail_ct.focus();
    return (false);
  }
  if (theForm.Fmail_ct.value.length < 8)
  {
    alert("Tapez au moins 8 caractères dans le champ E-mail.");
    theForm.Fmail_ct.focus();
    return (false);
  }

  if (theForm.Fpw_ct.value == "")
  {
    alert("Tapez une valeur pour le champ Mot de passe.");
    theForm.Fpw_ct.focus();
    return (false);
  }
  if (theForm.Fpw_ct.value.length < 4)
  {
    alert("Tapez au moins 4 caractères dans le champ Mot de passe.");
    theForm.Fpw_ct.focus();
    return (false);
  }

  return (true);
}
//-->
