// controllo campi form clienti
	function CheckForm(){
	if (document.contatti.nome.value==""){
	alert("Inserimento NOME obbligatorio...");
	document.contatti.nome.style.background="red";
	contatti.nome.focus();
	return false;
	}
	if (document.contatti.cognome.value==""){
	alert("Inserimento COGNOME obbligatorio...");
	document.contatti.cognome.style.background="red";
	contatti.cognome.focus();
	return false;
	}
	if (document.contatti.email.value==""){
	alert("Inserimento EMAIL obbligatorio...");
	document.contatti.email.style.background="red";
	contatti.email.focus();
	return false;
	}
	if (document.contatti.telefono.value==""){
	alert("Inserimento TELEFONO obbligatorio...");
	document.contatti.telefono.style.background="red";
	contatti.telefono.focus();
	return false;
	}
	if (document.contatti.oggetto.value==""){
	alert("Inserimento OGGETTO obbligatorio...");
	document.contatti.oggetto.style.background="red";
	contatti.oggetto.focus();
	return false;
	}
	if (document.contatti.testo.value==""){
	alert("Inserimento TESTO obbligatorio...");
	document.contatti.testo.style.background="red";
	contatti.testo.focus();
	return false;
	}
	if (document.contatti.accetta.checked==false){
        alert("Devi leggere la legge sulla privacy e confermare di averlo fatto spuntando la casella...");
		document.contatti.accetta.style.background="red";
	    contatti.accetta.focus();
	    return false;
	}
	return true;
	}
