function checkForm(form) {
if (form.contenuto.value.length == 0) {
	alert("Attenzione ! Devi scrivere qualcosa nel messaggio.");
	return false;
	}	
if (form.autore_nickname.value.length == 0) {
	alert("Attenzione ! Devi inserire il tuo nickname.");
	return false;
	}	
if (form.autore_email.value.length == 0) {
	alert("Attenzione ! Inserisci la tua email.");
	return false;
	}	
if (form.soggetto.value.length == 0) {
	alert("Attenzione ! Devi inserire il soggetto del messaggio.");
	return false;
	}	

}