<!--
function controlla(){

		
		if (document.contattami.NOME.value == "") 
		{
			alert("E' necessario inserire un nome");
			return false;
		}
		else if ((document.contattami.E_MAIL.value.indexOf("@") == -1)||(document.contattami.E_MAIL.value == ""))
		{
			controllo=true;
			alert("L'indirizzo e-mail che hai inserito non è corretto o non è stato inserito");
			return false;
		}
		
		else if (!document.contattami.PRIVACY[0].checked)
		{
			alert("Devi accettare la normativa sulla privacy per poter proseguire");
			return false;
		}
		
	
}


function stampa(str) {

        searchWin = window.open(str,'stampa','scrollbars=yes,resizable=no,width=500,height=500,status=no,location=no,toolbar=no');


}

function mappa(str) {

        searchWin = window.open(str,'stampa','scrollbars=yes,resizable=no,width=790,height=790,status=no,location=no,toolbar=no');


}

function stampa_popup() {
var testo = "<html><head><title>"+document.title+"</title><link href=\"bicu.css\" rel=\"stylesheet\" type=\"text/css\"></head>";
testo += "<body topmargin=0 leftmargin=0 class='BODY_PRINT'><center>";
testo += "<table width=\"100%\" border=\"0\"><tr><td>";
testo += document.getElementById('livello1').innerHTML+"</td></tr></table>";
testo += "</body></html>";
var ident_finestra = window.open("","finestra_stampa","height=600,width=400");
ident_finestra.document.open();
ident_finestra.document.write(testo);
ident_finestra.document.close();
ident_finestra.print();
ident_finestra.close(); 
}
-->
