		function VerificationEmail(elm)
		{
		if (elm.indexOf("@") != "-1" &&
			elm.indexOf(".") != "-1" &&
			elm != "")
			return true;

		return false;
		}



		function verifForm(valider) {
			var courriel = document.forms["formNewsLetter"].elements["mail"];
			var MesErr =  "";

			if (!VerificationEmail(courriel.value)) {
				MesErr += "\n- Le courriel saisi est incorrect";
				//courriel.focus(); 
			}


			if (MesErr != "") {
				alert(MesErr);
				return false;

			} else {
				//document.forms["formNewsLetter"].submit();
				return true;
			}
		}
