function Form (form){
if (form.nome.value =="") {
	alert("ATTENTION, you did not enter your name.");
	form.nome.focus();
	return false;
}	
if (form.cognome.value =="") {
	alert("ATTENTION, you did not enter your surname.");
	form.cognome.focus();
	return false;
}	
if (form.email.value =="") {
	alert("ATTENTION, you did not enter an email address.");
	form.email.focus();
	return false;
}	
if (form.email.value.length > 0 && form.email.value.search(/^\w+((-\w+)|(\.\w+))*\@\w+((\.|-)\w+)*\.\w+$/) == -1){
		alert("ATTENTION, the email address you entered is not correct.");
		form.email.focus();
		return false;
}
if (form.privacy.checked !=true) {
	alert("You'll need to allow us to process your personal data. Your permission is required by Italian law, within the scope and purposes of the service provided as indicated at ** on the form below.");
	form.privacy.focus();
	return false;
}	
	return true;
}
