function controlloArea(){
	with(document.moduloArea)
		{
		if(utente.value=="") {
		alert("Spiacenti, controllare nome utente e/o password");
		utente.focus();
		return false;
		}
		if(password.value=="") {
		alert("Spiacenti, controllare nome utente e/o password");
		password.focus();
		return false;
		}
		
	}
	alert("Controllo effettuato con successo. Il modulo sarà inviato.");
	return true;
}
