

function controlloaccesso(accesso)
{




if (accesso.e_mail.value.length <1) {
		alert("Non hai inserito il tuo Nome utente. \n\nControlla il modulo e riprova");
		accesso.e_mail.focus();
		return (false);  	}




if (document.all || document.getElementById) {
for (i = 0; i < modulo.length; i++) {
var tempobj = modulo.elements[i];
if (tempobj.type.toLowerCase() == "submit" || tempobj.type.toLowerCase() == "reset")
tempobj.disabled = true;	
		}
	}

		

											
}		
