echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL=../vista/acpalta.php">';
    } else {
        //realizamos la modificacion de la solucion
        $valor = $clsCNRecl->Cierre($_POST["Id"], $aux, $_POST["lngAccion"]);
        if ($valor == true) {
            echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL=../vista/exito.php?Id=Se ha realizado correctamente el cierre de una Queja o Sugerencia">';
        } else {
            echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL=../vista/error.php?id=' . $valor . '">';
        }
    }
    //    }else{
    //    }
} else {
    if (isset($_POST['cmdEnvioComentario']) && $_POST['cmdEnvioComentario'] == 'Aceptar') {
        //guardamos el comentario de esta reclamacion
        $exito = $clsCNRecl->AltaComentario($_POST['strReclamacion'], $_POST['lngIdUsuario'], $_POST['strComentario'], 'SI', 'reclamacion');
        //si no ha dado error al guardar el comentario
        if ($exito) {
            //enviamos correo al cliente
            EnviaCorreos($_POST['Usuario'], $_POST['mailCliente'], $_POST['strReclamacion'], $_POST['strComentario']);
            echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL=../vista/reclcomentario.php?id=' . $_POST['lngIdReclamacion'] . '">';
        }
    } else {
        if (isset($_POST['cmdAltaComentario']) && $_POST['cmdAltaComentario'] == 'Aceptar') {
            //guardamos el comentario de esta reclamacion
            $clsCNRecl->AltaComentario($_POST['strReclamacion'], $_POST['lngIdUsuario'], $_POST['strComentario'], 'NO', 'reclamacion');
            echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL=../vista/reclcomentario.php?id=' . $_POST['lngIdReclamacion'] . '">';
        } else {
            if (isset($_POST['AltaDoc']) && $_POST['AltaDoc'] === 'SI') {
                $tipo = 'reclamacion';
                include_once '../vista/insertar_Recl_NC_PM.php';