function verifieSaisie()
{
 var frm;
 frm = document.SendForm;
 
 var valeur, objCourant;
  objCourant = frm.elements["Nom"];
  valeur = objCourant.value;
 if ( valeur.length<1 )
 {
   window.alert( "Veuillez spécifier votre nom." );
   objCourant.focus();
   return false;
 }
  objCourant = frm.elements["Prenom"];
  valeur = objCourant.value;
 if ( valeur.length<1 )
 {
   window.alert( "Veuillez spécifier votre prénom." );
   objCourant.focus();
   return false;
 }
  objCourant = frm.elements["Telephone"];
  valeur = objCourant.value;
 if ( valeur.length<1 )
 {
   window.alert( "Veuillez spécifier votre téléphone." );
   objCourant.focus();
   return false;
 }
  objCourant = frm.elements["Email"];
  valeur = objCourant.value;
 if ( valeur.length<1 )
 {
   window.alert( "Veuillez spécifier un email." );
   objCourant.focus();
   return false;
 }
 
  objCourant = frm.elements["Email"];
 valeur = objCourant.value;
 if ( valeur.length>0 )
 {
   if ( !EMailEstValide(valeur) )
   {
     objCourant.focus();
     return false;
   }
 }
  objCourant = frm.elements["Commentaire"];
  valeur = objCourant.value;
 if ( valeur.length<1 )
 {
   window.alert( "Veuillez saisir un commentaire." );
   objCourant.focus();
   return false;
 }
  objCourant = frm.elements["HIDE_EmailDestinataire"];
  valeur = objCourant.value;
 if ( valeur.length<1 )
 {
   window.alert( "Veuillez spécifier l'agence par laquelle vous souhaitez être recontacté." );
   objCourant.focus();
   return false;
 }
 
 return true;
}