/*
function chk_area_riservata(){
	with(document.f_area_riservata){
		if ( chk_txt(utente,"Inserire l'utente") &&
    		 chk_txt(password,"Inserire la password") 
       )
		  document.forms.f_area_riservata.submit();
	}
}
*/

function chk_area_riservata(){
	with(document.f_area_riservata){
		if ( !chk_txt(utente,"Inserire l'utente") || !chk_txt(password,"Inserire la password") ) {
		 	return false;
		}
		return true;
		
	}
}


function chk_brand(){
	with(document.f_area_riservata){
		if( 
			chk_select(idmarchio,"Selezionare il brand")
        )
		 document.forms.f_area_riservata.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;
}*/

