protected void bttnCorreo_Click(object sender, EventArgs e)
        {
            string ruta          = string.Empty;
            string archivo       = string.Empty;
            string asunto        = string.Empty;
            string contenido     = string.Empty;
            string OrigenArchivo = string.Empty;

            lblMensajeCorreo.Text = string.Empty;
            modalCorreo.Show();
            try
            {
                //ruta = "../ReportesFicha/VisualizadorCrystal.aspx?cverep=4&Nombre=" + lblNombre_l.Text + "&Referencia=" + lblReferencia_l.Text + "&Importe=" + lblImporte_l.Text.TrimStart('$') + "&Vigencia=" + lblVigencia_l.Text + "&Concepto=" + hddnConceptos.Value + "&Observaciones=" + hddnObservaciones.Value;
                ////string _open = "window.open('" + ruta + "', 'miniContenedor', 'toolbar=yes', 'location=no', 'menubar=yes', 'resizable=yes');";
                //ScriptManager.RegisterStartupScript(this, this.GetType(), Guid.NewGuid().ToString(), ruta, true);
                rptPDFAdjunto("\\Reportes\\Ficha_Referenciada.rpt", lblNombre_l.Text, lblReferencia_l.Text, lblImporte_l.Text.TrimStart('$'), lblVigencia_l.Text, hddnConceptos.Value, hddnObservaciones.Value);
                archivo = Server.MapPath("~") + "/ArchivoReferencia/Referencia - " + lblReferencia_l.Text + ".PDF";
                System.Net.Mail.MailMessage mmsg = new System.Net.Mail.MailMessage();
                asunto    = "Ficha Referenciada UNACH-SYSWEB";
                contenido = "<font size='2'>Para cualquier duda o aclaración te puedes comunicar a los siguientes telefonos:" + "<br /><br /><strong>DIRECCIÓN DE SISTEMAS DE INFORMACIÓN ADMINISTRATIVA</strong><br />Teléfono - (961) 617 80 00, Ext.: 5503, 5501, 5508 y 5509<br /><br />" +
                            "<strong>DEPARTAMENTO DE FINANZAS</strong><br />Teléfono - (961) 617 80 00, Ext.: 5108</font>";
                string MsjError = string.Empty;
                CNComun.EnvioCorreoAdjunto(ref mmsg, archivo, asunto, contenido, txtCorreo.Text, ref MsjError);
                if (MsjError == string.Empty)
                {
                    if (mmsg != null)
                    {
                        //modalCorreo.Hide();
                        lblMensajeCorreo.Text = "La referencia se ha enviado correctamente al correo: " + txtCorreo.Text;
                        OrigenArchivo         = Server.MapPath("~") + "/ArchivoReferencia/Referencia - " + lblReferencia_l.Text + ".PDF";
                        if (System.IO.File.Exists(OrigenArchivo))
                        {
                            System.IO.File.Delete(OrigenArchivo);
                        }

                        chkCorreo.Visible = false;
                    }
                    else
                    {
                        lblMensajeCorreo.Text = "Error en el envio de los archivos. " + MsjError; // ScriptManager.RegisterStartupScript(this.Page, Page.GetType(), "modal", "mostrar_modal( 0, '" + MsjError + "');", true);  //lblMsj.Text = ex.Message;
                        chkCorreo.Checked     = false;
                    }
                }
                else
                {
                    lblMensajeCorreo.Text = MsjError;
                }
            }
            catch (Exception ex)
            {
                lblMensajeCorreo.Text = ex.Message;
            }
        }