// JavaScript Document Sert à un site

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function validate_frm()
	{
		var email = document.inscription.Email.value ;
		var verif = /^[a-zA-Z0-9_-]+@[a-zA-Z0-9-]{2,}[.][a-zA-Z]{2,3}$/ ;
		if (verif.exec(email) == null)
			 {
				alert("Votre email est incorrecte");
				return false;
			 }
	} 	

		function clearText(thefield) { 
		if (thefield.defaultValue == thefield.value) 
			thefield.value = "" 
		else 
			thefield.value = thefield.defaultValue 
	}
