

function controllotrovapass(trovapass)
{




if (trovapass.e_mail.value.length <1) {
		alert("Non hai inserito il tuo Indirizzo E-Mail. \n\nControlla il modulo e riprova");
		trovapass.e_mail.focus();
		return (false);  	}
pw1 = trovapass.e_mail.value;
pw2 = "Il tuo e-mail QUI";
if (pw1 == pw2) {
alert ("Non hai inserito il tuo Indirizzo E-Mail. \n\nControlla il modulo e riprova.")
return false;
}




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

		

											
}		
