function validationAdd() { photoa = document.upl.photoa.value; if (photoa.search("jpg$|jpeg$|png$|JPG$|JPEG$|PNG$") == -1) { alert ('Selectionnez une image avers au format JPG ou PNG'); document.upl.photoa.focus(); return false; } photor = document.upl.photor.value; if (!(photor.search("jpg$|jpeg$|png$|JPG$|JPEG$|PNG$") != -1)&(photor != "")) { alert ('Selectionnez une image revers au format JPG ou PNG'); document.upl.photor.focus(); return false; } if(document.upl.depart.value == "") { alert ('veuillez choisir un departement'); document.upl.depart.focus(); return false; } else {return true;} }