<!--
		function valida_aiuto() {
		//email
		filtro = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
		if (!filtro.test(document.getElementById("posta_aiuto").value)) {
			alert("\nAGENZIA VIAGGI NUOVO MONDO:\n Indirizzo E-mail non valido!");
			document.getElementById("posta_aiuto").focus();
			document.getElementById("posta_aiuto").style.backgroundColor="#DDEEFF";
			document.getElementById("posta_aiuto").style.color="#000";
			return false;
		}	
		//nome località
		if (document.getElementById("localita").value=='') {
			alert("\nAGENZIA VIAGGI NUOVO MONDO:\n indicare la località cercata!");
			document.getElementById("localita").focus();
			document.getElementById("localita").style.backgroundColor="#DDEEFF";
			document.getElementById("localita").style.color="#000";
			return false;
		}
		//privacy
		if (!document.getElementById("privacy").checked) {
			alert("\n AGENZIA VIAGGI NUOVO MONDO\nConfermare il trattamento dei dati personali!");
			return false;
		}
	}
//-->