function stampadiv() {
var testo= "<html><head><link rel='stylesheet' type='text/css' href='templates/breda_interno/css/ie.css' media='screen' title='Comune di Breda di Piave'></head><body>";
testo+= document.getElementById('main').innerHTML+"</body></html>";
var ident_finestra = window.open("","finestra_stampa","height=400,width=400");
ident_finestra.document.write(testo);
ident_finestra.document.close();
ident_finestra.print();
ident_finestra.close();
}


function controllaiscrizione(){

if (document.iscrizionebiblio.Nome.value ==0){
	alert("Attenzione!! Inserire il nome.")
return false;
}

if (document.iscrizionebiblio.Cognome.value ==0){
	alert("Attenzione!! Inserire il Cognome.")
return false;
}

if (document.iscrizionebiblio.LuogoNascita.value ==0){
	alert("Attenzione!! Inserire il Luogo di Nascita.")
return false;
}

if (document.iscrizionebiblio.DataNascita.value ==0){
	alert("Attenzione!! Inserire il Data di Nascita.")
return false;
}

if (document.iscrizionebiblio.Indirizzo.value ==0){
	alert("Attenzione!! Inserire l Indirizzo.")
return false;
}

if (document.iscrizionebiblio.Cap.value ==0){
	alert("Attenzione!! Inserire il Cap.")
return false;
}

if (document.iscrizionebiblio.Comune.value ==0){
	alert("Attenzione!! Inserire il Comune.")
return false;
}

if (document.iscrizionebiblio.Provincia.value ==0){
	alert("Attenzione!! Inserire il Provincia.")
return false;
}

if (document.iscrizionebiblio.Telefono.value ==0){
	alert("Attenzione!! Inserire il Telefono.")
return false;
}

if (document.iscrizionebiblio.E-mail.value ==0){
	alert("Attenzione!! Inserire l Email.")
return false;
}

if (document.iscrizionebiblio.Occupazione.value ==0){
	alert("Attenzione!! Inserire l Occupazione.")
return false;
}

}
