// JavaScript Document

function newsletter(url){
	var email = document.getElementById("email").value;
	document.location.href=url + '?inscription_nl&n_mail=' + email;
}