function noDiv(){
	document.getElementById("remove").style.display = 'none';
	return true;

}
function controlli_form() {
	
	var nome = document.contatti.nome.value;
	var tel = document.contatti.tel.value;
	var email = document.contatti.email.value;
	var azienda = document.contatti.azienda.value;
	var msg = document.contatti.msg.value;
	var privacy = document.contatti.privacy.checked;

	if (!nome || !email || !msg) {
		if (!nome) {
			alert("Inserisca un NOME.\n");
			//alert('MODULE NAME Required.\n');
			//return false;
		}
		if (!email) {
			alert("Inserisca un indirizzo MAIL VALIDO.\n");
			//return false;
		}
		if (!msg) {
			alert("Inserisca un MESSAGGIO.\n");
			//return false;
		}
	}
	if (privacy == false) {
		alert('Per continuare devi accettare la legge per il trattamento dei dati personali spuntando la casella a fine pagina.');
		return false;
	}
}
