function controlloForm(){
	thisForm=document.contattaci;
	
	if(thisForm.nome.value=='Nome e Cognome'){
		alert("Inserire Nome e Cognome");
		thisForm.nome.focus();
		return;
	}
	if(thisForm.email.value=='Indirizzo e-mail'){
		alert("inserire l'email");
		thisForm.email.focus();
		return;
	}

	if(thisForm.privacy.checked == false){
		alert("Bisogna accettare le condizioni sulla privacy per proseguire");
		thisForm.privacy.focus();
		return;
	}
	thisForm.submit();
}

function zoom(file, w, h) {
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
     window.open(file, "Immagine", "width="+w+", height="+h+", top="+t+", left="+l+", scrollbars=0");
}
