////////////////
var phpPath = "/extension/ezwebin/design/ezwebin/php/";
///////////////////////////////////
function valid_inscription(form){
	//alert('Newsletter inscription test : ' + document.getElementById(form).f_email.value);
	var email = document.getElementById(form).f_email.value;
	var variable= 'email='+ email;
	var action = new Ajax(phpPath+'formulaire/newsletter_inscription.php', {method: 'post', data: variable , update: $('newsletter_inscription_msg') }).request();	
}