protected void btn_informe_Click(object sender, EventArgs e)
        {
            //string vendedores = agregra_comillas(l_vendedores.Text);
            //string clientes = agregra_comillas(l_clientes.Text);


            //div_report.Visible = true;

            if (Txt_num_doc.Text != "")
            {
                string where = " where númfactura in (" + agregra_comillas(Txt_num_doc.Text) + ")";

                string es_vendedor = ReporteRNegocio.esvendedor(USER);

                if (es_vendedor == "2")
                {
                    where += " and codvendedor in ('" + USER + "')";
                }

                string grupos_del_usuario = agregra_comillas(ReporteRNegocio.grupos_usuario(User.Identity.Name.ToString()));

                if (grupos_del_usuario == "")
                {
                    grupos_del_usuario = agregra_comillas(ReporteRNegocio.grupos_usuario_v_report(User.Identity.Name.ToString()));
                }



                where += " and user1 in (" + grupos_del_usuario + ")";

                div_report.Visible = true;
                G_INFORME_TOTAL_VENDEDOR.Visible    = true;
                G_INFORME_TOTAL_VENDEDOR.DataSource = ReporteRNegocio.busca_factura(where);
                G_INFORME_TOTAL_VENDEDOR.DataBind();
            }


            ScriptManager.RegisterStartupScript(Page, this.GetType(), "teeee", "<script> new Tablesort(document.getElementById('ContentPlaceHolder_Contenido_G_INFORME_TOTAL_VENDEDOR')); </script>", false);
        }