function Form (){
form = document.getElementById("contatto");
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.email.focus();
	return false;
}	
if (form.posta.value.length > 0 && form.posta.value.search(/^\w+((-\w+)|(\.\w+))*\@\w+((\.|-)\w+)*\.\w+$/) == -1){
		alert("L'indirizzo email inserito non &egrave; corretto");
		form.email.focus();
		return false;
}
if (form.privacy.checked==false) {
	alert("Acconsenti al trattamento dei dati personali. Il consenso &egrave; facoltativo, ma necessario allo scopo di erogazione del servizio.");
	form.privacy.focus();
	return false;
}	
	return true;
}