function champsok_fr()
{
     if (document.AVIS.nom.value.length == 0) { document.im_nom.src = "/images/important2.gif"; }
     else { document.im_nom.src = "/images/important1.gif"; }
 
     if (document.AVIS.prenom.value.length == 0) { document.im_prenom.src = "/images/important2.gif"; }
     else { document.im_prenom.src = "/images/important1.gif"; }
	 
	      if (document.AVIS.tel.value.length == 0) { document.im_tel.src = "/images/important2.gif"; }
     else { document.im_tel.src = "/images/important1.gif"; }
	 
	      if (document.AVIS.mail.value.length == 0) { document.im_mail.src = "/images/important2.gif"; }
     else { document.im_mail.src = "/images/important1.gif"; }
	 
	 	  /* if (document.AVIS.numcomm.value.length == 0) { document.im_numcomm.src = "/images/important2.gif"; }
     else { document.im_numcomm.src = "/images/important1.gif"; }
	 
	 	      if (document.AVIS.datecomm.value.length == 0) { document.im_datecomm.src = "/images/important2.gif"; }
     else { document.im_datecomm.src = "/images/important1.gif"; }*/


  if (document.AVIS.nom.value.length == 0)
  {
    alert("Merci d'indiquer votre nom");
    document.AVIS.nom.focus();
    return false;
  }
  if (document.AVIS.prenom.value.length == 0)
  {
    alert("Merci d'indiquer votre prénom");
    document.AVIS.prenom.focus();
    return false;
  }
  if (document.AVIS.tel.value.length == 0)
  {
    alert("Merci d'indiquer votre numéro de téléphone");
    document.AVIS.tel.focus();
    return false;
  }
  if (document.AVIS.mail.value.length == 0)
  {
    alert("Merci d'indiquer votre email");
    document.AVIS.mail.focus();
    return false;
  }
    /*if (document.AVIS.numcomm.value.length == 0)
  {
    alert("Merci d'indiquer votre n° d'autorisation de commerce");
    document.AVIS.numcomm.focus();
    return false;
  }

  if (document.AVIS.datecomm.value.length == 0)
  {
    alert("Merci d'indiquer la date d'obtention de votre n° d'autorisation de commerce");
    document.AVIS.datecomm.focus();
    return false;
  }*/
  return true;
}
