function Form (form) {
if (form.name.value =="") {
	alert("Inserisci il tuo nome.");
	form.name.focus();
	return false;
}	
if (form.lastname.value =="") {
	alert("Inserisci il tuo cognome.");
	form.lastname.focus();
	return false;
}	
if (form.posta.value =="") {
	alert("Inserisci il tuo indirizzo email.");
	form.posta.focus();
	return false;
}	
if (form.posta.value.length > 0 && form.posta.value.search(/^\w+((-\w+)|(\.\w+))*\@\w+((\.|-)\w+)*\.\w+$/) == -1){
	alert("Verifica la correttezza dell'indirizzo email inserito.");
	form.posta.focus();
	return false;
}
if (form.privacy.checked !=true) {
	alert("Acconsenti al trattamento dei dati personali. Il consenso è facoltativo, ma necessario allo scopo di erogazione del servizio.");
	form.privacy.focus();
	return false;
}	
	return true;
}
