function getReciboDesc($numero)
{
    if (isset($numero) and $numero != 0) {
        $cRec = new cReciboDeOperacion(false, false, $numero);
        $cRec->setNumeroDeRecibo($numero, true);
        $d = $cRec->getDatosInArray();
        $desRec = $cRec->getDescripcion();
        $tab = new TinyAjaxBehavior();
        $tab->add(TabSetValue::getBehavior("txtDescRecibo", $desRec));
        return $tab->getString();
    }
}