function validateLogin(theform) {
	if (theform.u.value=='') { alert ( "Il campo 'Username' è obbligatorio" ); return false; }
	if (theform.p.value=='') { alert ( "Il campo 'Password' è obbligatorio" ); return false; }
	return true;
}
