private void ConsultaJU(string id_cobranza)
        {
            DataTable table = ConsultasEspecificas.Consulta_Juicios_DOS(id_cobranza);

            if (table != null && table.Rows.Count > 0)
            {
                this.txtNombreCliente.Text = table.Rows[0]["cliente"].ToString();
                this.txtNroOperacion.Text  = table.Rows[0]["nrooperacion"].ToString();
                this.txtDeudor.Text        = table.Rows[0]["nomdeudor"].ToString();
                this.txtRutdeudor.Text     = table.Rows[0]["rut_deudor"].ToString();
                this.txttramite.Text       = table.Rows[0]["tramite"].ToString();
                this.txtFechaTramite.Text  = table.Rows[0]["ftramite"].ToString();
                this.txtJuzgado.Text       = table.Rows[0]["tribunal"].ToString();
                this.txtRol.Text           = table.Rows[0]["rol"].ToString();
                this.txtAbogado.Text       = table.Rows[0]["abogado"].ToString();
                this.txtProcurador.Text    = table.Rows[0]["procurador"].ToString();
                this.txtEstado.Text        = table.Rows[0]["estadojuicio"].ToString();
                this.hdfIdJuicio.Value     = table.Rows[0]["id_juicios"].ToString();
                // this.hddDocumento.Value = table.Rows[0]["urldocumento"].ToString();
                this.txtProcedimiento.Text = table.Rows[0]["Procedimiento"].ToString();
                this.txtMateria.Text       = table.Rows[0]["Materia"].ToString();
                this.txtProducto.Text      = table.Rows[0]["Producto"].ToString();
                this.txtEtapa.Text         = table.Rows[0]["etapa"].ToString();
                this.hdfTipoCobranza.Value = table.Rows[0]["TipoCobranza"].ToString();

                string strIdProducto = table.Rows[0]["id_producto"].ToString();

                if (strIdProducto == "1")
                {
                    this.hdfTipoDocumentoCobranza.Value = "MUTUO";
                }

                else if (strIdProducto == "2")
                {
                    this.hdfTipoDocumentoCobranza.Value = "DOCUPAGARE";
                }

                else if (strIdProducto == "3")
                {
                    this.hdfTipoDocumentoCobranza.Value = "DOCUJUICIO";
                }

                else if (strIdProducto == "4")
                {
                    this.hdfTipoDocumentoCobranza.Value = "DocuEstandardUNO";
                }

                else if (strIdProducto == "5")
                {
                    this.hdfTipoDocumentoCobranza.Value = "DocuEstandardDOS";
                }

                else if (strIdProducto == "14")
                {
                    this.hdfTipoDocumentoCobranza.Value = "DocuEstandardTRES";
                }

                else if (strIdProducto == "12")
                {
                    this.hdfTipoDocumentoCobranza.Value = "DocuEstandardCUATRO";
                }

                ALCSA.FWK.BD.Servicio objServicio = new ALCSA.FWK.BD.Servicio();
                objServicio.Comando     = string.Format("SELECT * FROM BitacoraEstadoJuicio WHERE id_cobranza = {0}", id_cobranza);
                objServicio.TipoComando = ALCSA.FWK.BD.Enumeradores.TiposComandos.Query;
                objServicio.Conexion    = "CONN";

                gvObservaciones.DataSource = objServicio.EjecutarDataTable();
                gvObservaciones.DataBind();

                // if (gvObservaciones.Rows.Count.Equals(0)) pnlObservaciones.Height = new Unit(50, UnitType.Pixel);
            }
        }