<!--
	function ValidaMail(TheForm) {
		filtro = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
		if (!filtro.test(document.getElementById("posta").value)) {
			alert(" Indirizzo E-mail non valido \n\n Invalid e-mail address !")
			document.getElementById("posta").focus()
			return false;
		}
		//privacy
		if (!document.getElementById("privacy").checked) {
			alert(" Confermare il trattamento dei dati personali! \n\n Check personal data treatment to confirm");
			return false;
		}
	}
	
	
	//popup privacy
	function MM_openBrWindow(theURL,winName,features) { //v2.0
		window.open(theURL,winName,features);
	}
//-->

