function EmailCheck(frm)
			{
				if (frm.otxtEmail_M.value == "" || frm.otxtEmail_M.value == null || frm.otxtEmail_M.value.charAt(0) == ' ')
				{
					alert(FrmDlReg3getvalue(1));
					frm.otxtEmail_M.focus();
					return false;
				}
				var ver_mail = /^[a-z0-9]([a-z0-9_\-\.]*)@([a-z0-9_\-\.]*)(\.[a-z]{2,5})$/i;
				if(!document.getElementById('otxtEmail_M').value.match(ver_mail))
					{
						//alert("E-mail doit être valide : de la forme 'identifiant@domaine.xxx'");
						alert(FrmDlReg3getvalue(2));
						document.getElementById('otxtEmail_M').focus();
						return false;
					} 
				else
				{
					return true; 
				}
			}