<!--
function ValidaForm(FormContatti) {
	if (document.getElementById("nome").value=='') {
		alert("\nAMBARADAN SPITZ:\n nome mancante! !\n\n\nAMBARADAN SPITZ:\n insert your surname!");
		document.getElementById("nome").focus();
		document.getElementById("nome").style.backgroundColor="#5DE";
		document.getElementById("nome").style.color="#000";
		return false;
	}
	if (document.getElementById("cognome").value=='') {
		alert("\nAMBARADAN SPITZ:\n cognome mancante! !\n\n\nAMBARADAN SPITZ:\n insert your name!");
		document.getElementById("cognome").focus();
		document.getElementById("cognome").style.backgroundColor="#5DE";
		document.getElementById("cognome").style.color="#000";
		return false;
	}

//privacy
		if (!document.getElementById("privacy").checked) {
			alert("\n ATTENZIONE:\nConfermare il trattamento dei dati personali!\n\n\nC ATTENTION: \nCheck personal data treatment to confirm");
			return false;
		}
}
//-->
