
//--- Controlla campi obbligatori login cliente
function fCheckObbligatori() 
{
	var blnReturn = true;

	if( $j('#username_cliente').val() == "" ) 
	{ 
		blnReturn = false;
		$j('#effect_box').animate({backgroundColor: '#ffc49d'}).animate({backgroundColor: '#CDDCEC'});
		$j('#username_cliente').focus();
	} 
	else if ( $j('#password_cliente').val() == "" ) 
	{ 
		blnReturn = false;
		$j('#effect_box').animate({backgroundColor: '#ffc49d'}).animate({backgroundColor: '#CDDCEC'});
		$j('#password_cliente').focus();
	}
	
	return blnReturn;
}
