// JavaScript Document
// check email
// check email
	function isEmail(emailStr){
		var validDomain=false;
		var AtPos = emailStr.lastIndexOf("@");
		var DotPos= emailStr.lastIndexOf(".");
		if((AtPos>0)&&(DotPos>0)&&(AtPos<DotPos)){
			var domainExtList='ac.ad.ae.af.ag.ai.al.am.an.ao.aq.ar.as.at.au.aw.az.ba.bb.bd.be.bf.bg.bh.bi.bj.bm.bn.bo.br.bs.bt.bv.bw.by.bz.ca.cc.cd.cf.cg.ch.ci.ck.cl.cm.cn.co.cr.cs.cu.cv.cx.cy.cz.de.dj.dk.dm.do.dz.ec.ee.eg.eh.er.es.et.fi.fj.fk.fm.fo.fr.fx.ga.gb.gd.ge.gf.gg.gh.gi.gl.gm.gn.gp.gq.gr.gs.gt.gu.gw.gy.hk.hm.hn.hr.ht.hu.id.ie.il.im.in.io.iq.ir.is.it.je.jm.jo.jp.ke.kg.kh.ki.km.kn.kp.kr.kw.ky.kz.la.lb.lc.li.lk.lr.ls.lt.lu.lv.ly.ma.mc.md.mg.mh.mk.ml.mm.mn.mo.mp.mq.mr.ms.mt.mu.mv.mw.mx.my.mz.na.nc.ne.nf.ng.ni.nl.no.np.nr.nt.nu.nz.om.pa.pe.pf.pg.ph.pk.pl.pm.pn.pr.ps.pt.pw.py.qa.re.ro.ru.rw.sa.sb.sc.sd.se.sg.sh.si.sj.sk.sl.sm.sn.so.sr.st.su.sv.sy.sz.tc.td.tf.tg.th.tj.tk.tm.tn.to.tp.tr.tt.tv.tw.tz.ua.ug.uk.um.us.uy.uz.va.vc.ve.vg.vi.vn.vu.wf.ws.ye.yt.yu.za.zm.zr.zw.com.edu.gov.int.mil.net.org .biz.pro.info.aero.name.coop.arpa.nato.museum.EoF';
			var domainExt=domainExtList.split(".");
			var emailExt=emailStr.substr(DotPos+1);
			emailExt=emailExt.toLowerCase();
			for(i=0;domainExt.length;i++)  {
				if (domainExt[i]=='EoF')  break; //infinite loop else
				if (emailExt==domainExt[i])  {validDomain=true;break;}
			}			
		}return validDomain;
	}

function verif_champs($formName)
{
	msg="";
	switch ($formName) {
		case 'contact' :
			
			// si le premier choix est vide...
			if ( document.contact.civilite[0].status == ''  && document.contact.civilite[1].status == '' ) 
				msg=msg+"- Veuillez indiquer votre civilité\n";

			if(document.contact.nom.value=="")
				msg=msg+"- Veuillez insérer votre nom\n";

			if(document.contact.prenom.value=="")
				msg=msg+"- Veuillez insérer votre prénom\n";

			if(document.contact.adresse.value=="")
				msg=msg+"- Veuillez insérer votre adresse\n";

			if(document.contact.cpville.value=="")
				msg=msg+"- Veuillez insérer votre code postal et votre ville\n";

			if(document.contact.telephone.value=="")
				msg=msg+"- Veuillez insérer votre numéro de téléphone\n";

			if(!isEmail(document.contact.email.value))
				msg=msg+"- Veuillez insérer une adresse email valide\n";

			if(document.contact.sujet.value=="")
				msg=msg+"- Veuillez insérer un sujet\n";

			if(document.contact.message.value=="")
				msg=msg+"- Veuillez insérer un message\n";
			break;
		
	}
		// Message final si erreur
	if(msg!="") {	
		alert("Votre demande n'a pas été envoyée car les champs suivants sont incomplets:\t\n\n"+msg+"\n\nVeuillez donc ajouter les données manquantes et réessayer.");
		return false;
	}
	else return true;	
}