<!--

//----------------stampa mappa

function printWindow() {
bV = parseInt(navigator.appVersion);
if (bV >= 4) window.print();
}

function controlla(){
	if (document.form1.Cognome.value == "") {
	   alert("Il campo Cognome è obbligatorio")
	   document.form1.Cognome.focus()
	   return false
	}
	
	if (document.form1.Telefono.value == "") {
	   alert("Il campo Telefono è obbligatorio")
	   document.form1.Telefono.focus()
	   return false
	}
	
		
	if (document.form1.privacy.checked==false) {
	   alert("E' obbligatorio acconsentire al trattamento dei dati personali")
	   return false
	}
	return true;
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
