/*
function chk_agente(){
	with(document.f_agenti){
		if ( chk_txt(utente,"Inserire l'utente") && chk_txt(password,"Inserire la password") )
		  document.forms.f_agenti.submit();
	}
}
*/

function chk_agente(){
	with(document.f_agenti){
		if ( !chk_txt(utente,"Inserire l'utente") || !chk_txt(password,"Inserire la password") ) {
		 	return false;
		}
		return true;
	}
}


