function ValidationChamp(champ,texte,email)
{
 champ.value = strTrim(champ.value);
 if ( champ.value == '' )
 {
  alert("Veuillez saisir "+texte+" !");
  champ.focus();
  return false;
 }
 return true;
}
