function lavora() {

var errorMsg = "";

if (document.form.NOME.value==""){
	errorMsg += "ATTENZIONE! Inserire NOME!";
	alert(errorMsg);
	return false;
}

if (document.form.COGNOME.value==""){
	errorMsg += "ATTENZIONE! Inserire COGNOME!";
	alert(errorMsg);
	return false;
}

if ((document.form.GG1.value=="")||(document.form.MM1.value=="")||(document.form.AA1.value=="")){
	errorMsg += "ATTENZIONE! Inserire DATA DI NASCITA!";
	alert(errorMsg);
	return false;
}

if (document.form.CITTA.value==""){
	errorMsg += "ATTENZIONE! Inserire CITTA'!";
	alert(errorMsg);
	return false;
}

if (document.form.EMAIL.value==""){
	errorMsg += "ATTENZIONE! Inserire EMAIL!";
	alert(errorMsg);
	return false;
}

if(!document.form.EMAIL.value.match(/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/)){
	errorMsg += "ATTENZIONE! EMAIL non valida!";
	alert(errorMsg);
	return false;
}

if (document.form.TELEFONO.value==""){
	errorMsg += "ATTENZIONE! Inserire TELEFONO!";
	alert(errorMsg);
	return false;
}


if (!document.form.ACCETTO.checked){
	errorMsg += "ATTENZIONE! Accetta il trattamento dei dati personali!";
	alert(errorMsg);
	return false;
}
    return true;
}
