function soumission() {
  i=0;
  msg=[8];
  
  if( document.frmdecouv.email.value!=''  && ((document.frmdecouv.email.value.indexOf('@')==-1) ||
    (document.frmdecouv.email.value.indexOf('.')==-1)) 
    ) {       
    document.frmdecouv.email.focus();
    msg[i++]="\tVotre adresse Email n'est pas valide\n";
  }
  if (document.frmdecouv.ville.value == '') {    
    document.frmdecouv.ville.focus();
    msg[i++]="\tVille\n";
  }
  if (document.frmdecouv.cp.value == '') {    
    document.frmdecouv.cp.focus();
    msg[i++]="\tCode postal\n";
  }
  if (document.frmdecouv.adresse.value == '') {    
    document.frmdecouv.adresse.focus();
    msg[i++]="\tAdresse\n";
  }
  if (document.frmdecouv.prenom.value == '') {    
    document.frmdecouv.prenom.focus();    
    msg[i++]="\tPrénom\n";
  }                               
  if (document.frmdecouv.nom.value == '') {    
    document.frmdecouv.nom.focus();    
    msg[i++]="\tNom\n";
  }                               
  if (i) {
     mess="Veuillez-nous fournir les informations suivante Merci : \n";   
     while(i--) { mess+=msg[i]; }
     alert(mess);
     return false;
  }
  document.frmdecouv.action="/gallimard-cgi/appli_quizz/SendRepConcDecouv.pl";    
  document.frmdecouv.submit();
  return true;
}
