function nv_mess_ld(f)
{
txt="Il manque :";
valid=1;

     if (f[0].value == ""){txt=txt+"\n -> Votre nom";valid=0;}
     if (f[1].value == ""){txt=txt+"\n -> Votre message";valid=0;}
     if (f[2].value == ""){txt=txt+"\n -> Le code de vérification";valid=0;}
 
if (txt!="Il manque :"){alert(txt);return(false);}
if (valid == 0)return(false);

return(true);
}