
function verifMail(a){testm=false;for(var j=1;j<(a.length);j++){if(a.charAt(j)=='@'){if(j<(a.length-4)){for(var k=j;k<(a.length-2);k++){if(a.charAt(k)=='.'){testm=true;}}}}}
if(testm==false)
{window.alert("Votre adresse e-mail est incorrecte.");}
if(a=="toto@quelquepart.fr")
{window.alert("L'adresse e-mail doit être différente de \"toto@quelquepart.fr\"");testm=false}
return testm;}
function test_mail(champ)
{if(champ.length==0)
{window.alert("Veuillez saisir votre email.");return false;}
return verifMail(champ);}
function verification_boutique(frm)
{reponse1=test_mail(frm.email.value);if(reponse1==true){return true;}
return false;}