function RegistraMailingList(){
	var serForm;
	serForm=$("#main").serialize();

	$.post("/servizi/mailinglist/RegistraUtenteMailingList_ajax.asp?rnd=" + Math.floor(Math.random()*10000), serForm,
		function(data){
			if (data=="-1")
			{
				alert("Errore in registrazione.\nEmail già presente");
			}
			else if (data=="-2")
			{
				alert("Errore in registrazione");
			}
			else if (data=="-3")
			{
				alert("Errore in registrazione.\nDati non corretti.");
			}
			else
			{
				alert("Registrazione confermata.");
			}
		});        

}
