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_brand(){
	with(document.f_agenti){
		if( 
			chk_select(idmarchio,"Selezionare il brand")
        )
		 document.forms.f_agenti.submit();
	}
}

/*function chk_brand(){
	with(document.f_agenti){
		return chk_option_select(idmarchio,"Selezionare il brand"); 
	}
}

function chk_option_select(o,d) {
	if(!o[o.selectedIndex].value || 
     !o.selectedIndex ||
     o[o.selectedIndex].value==0 ||
     o.selectedIndex==0 ){
		alert(d);
		o.focus();
		return false;
	}
	return true;
}*/

