function Verif(){
	if(document.frm.email.value==""){
		alert("Ooops, le champ EMAIL est vide !");
		document.frm.Email.focus();
	}
	else if(document.frm.email.value!=""){
		email = document.frm.email.value;
		nbr_arobas=0;
		for(i=0;i<email.length;i++){
			if(email.charAt(i)=="@"){
				nbr_arobas++;
		}	}
		pt3 = email.charCodeAt(email.length - 3);
		pt4 = email.charCodeAt(email.length - 4);
		if((pt3 == 46) || (pt4 == 46)){
			point_ok=true;
		}else{
			point_ok=false;
		}
		if((nbr_arobas != 1) || (point_ok != true)){
			alert("Ooops, Adresse Mail incorrecte !");
			document.frm.email.focus();
		}else{
			document.frm.method = "post";
			document.frm.action="identupd.php";
			document.frm.submit();
			return true;
		}
	}
}