function CheckForm() {
		var form = document.forms[0];
		
	// CONTROLLO NOME
	if (form.nome.value == ''){	
		alert("Specificare il nome.");
		form.nome.select();
		return false;
	} 
	
	// CONTROLLO COGNOME
	if (form.cognome.value == ''){	
		alert("Specificare il cognome.");
		form.cognome.select();
		return false;
	}
	
	// CONTROLLO AZIENDA
	if (form.azienda.value == ''){	
		alert("Specificare l'Azienda.");
		form.azienda.select();
		return false;
	}
	
	// CONTROLLO INDIRIZZO
	if (form.indirizzo.value == ''){	
		alert("Specificare l'indirizzo.");
		form.indirizzo.select();
		return false;
	} 
	
	// CONTROLLO CITTA'
	if (form.citta.value == ''){	
		alert("Specificare la citta'.");
		form.citta.select();
		return false;
	}


	// CONTROLLO TELEFONO
	if (form.telefono.value != ''){	
		if (isNaN(form.telefono.value)) {
			alert("Il numero di telefono non è formalmente corretto.");
			form.telefono.select();
			return false;
		} 
	} else {
		alert("Specificare il numero di telefono.");
		form.telefono.select();
		return false;		
	}
	
	// CONTROLLO EMAIL
	if (controllaEmail(form.email.value) == false ) {
		return false;
	}
	
}
