function VerifMail(formulaire){ if (document.form_inscription.email.value!=document.form_inscription.email2.value){ alert("Email confirmation invalid."); return(false); } adresse = document.form_inscription.email.value; var place = adresse.indexOf("@",1); var point = adresse.indexOf(".",place+1); if ((place > -1)&&(adresse.length>6)&&(point > 1)){ return(true); }else{ alert("Wrong email format"); return(false); } } function verifChamp(int_NewUser){ if(document.form_inscription.nom_famille.value==""){ alert("You must enter your last name"); return false; } if(document.form_inscription.prenom.value==""){ alert("You must enter your first name"); return false; } if(document.form_inscription.email.value==""){ alert("You have not entered your email"); return false; } if(document.form_inscription.adresse_livraison.value==""){ alert("Enter your delivery address"); return false; } if(document.form_inscription.ville_livraison.value==""){ alert("Enter your delivery city"); return false; } if(document.form_inscription.code_postal_livraison.value==""){ alert("Enter your delivery postcode"); return false; } if((document.form_inscription.numero.value=="")||(document.form_inscription.prefixe.value=="")){ alert("You must enter your phone number"); return false; } if(document.form_inscription.password.value==""){ alert("Enter your password"); return false; } if(document.form_inscription.confirmepw.value==""){ alert("Enter your password confirmation"); return false; } if(document.form_inscription.password.value!=document.form_inscription.confirmepw.value){ alert("Problem with confirm password"); return false; } if(VerifMail()==false){ return false; } document.form_inscription.submit(); return true; } function verifChamp2(int_NewUser){ if(document.form_inscription.nom_famille.value==""){ alert("You must enter your last name"); return false; } if(document.form_inscription.prenom.value==""){ alert("You must enter your first name"); return false; } if(document.form_inscription.email.value==""){ alert("You have not entered your email"); return false; } if(document.form_inscription.adresse.value==""){ alert("You have not specified your address."); return false; } if(document.form_inscription.ville.value==""){ alert("You have not specified your city."); return false; } if(document.form_inscription.code_postal.value==""){ alert("You have not specified your postcode."); return false; } if(document.form_inscription.adresse_livraison.value==""){ alert("Enter your delivery address"); return false; } if(document.form_inscription.ville_livraison.value==""){ alert("Enter your delivery city"); return false; } if(document.form_inscription.code_postal_livraison.value==""){ alert("Enter your delivery postcode"); return false; } if(document.form_inscription.numero.value==""){ alert("You must enter your phone number"); return false; } if(document.form_inscription.password.value!=document.form_inscription.confirmepw.value){ alert("Problem with confirm password"); return false; } if(VerifMail()==false){ return false; } document.form_inscription.submit(); return true; }