////////////////
var phpPath = "/extension/ezwebin/design/ezwebin/php/";
///////////////////////////////////
function valid_inscription(form){
	var email = document.getElementById(form).f_email.value;
	var msg = document.getElementById("newsletter_inscription_msg");
	$.post(phpPath+"formulaire/newsletter_inscription.php",
	   { email: email },
	   function(data){
	     //alert("Data Loaded: " + data);
		 msg.innerHTML = data;
	   }
	 );
}

