function goinscriptionNL() {
	$.ajax({
		url: "/inscriptionNL.phtml",
		async: false,
		type: "POST",
		data: "emailNL="+document.getElementById("emailnl").value,
		success: function(reponse) {
			alert(reponse);
			document.getElementById('divInscritionNL').style.display='none';
		}
	});
}

function agenda(month,year) {
	$.ajax({
	  url: "/agenda2.php",
	  async: false,
	  type: "GET",
	  data: "month="+escape(month)+"&year="+escape(year),
	  success: function(html){
		$("#agenda").html(html);
	  }
	});	
}
