$val[] = $DSG["socios"];
//graficos
$x = new SAFEChart();
$x->setValues($val);
$x->setLabels($lbl);
$x->setTitle("CLAVES GENERALES DE PERSONAS");
$mFile = $x->Chart3DBar(1000);
open_flash_chart_object(648, 512, $mFile, true, "../");
//====================================================================================================
//CAPTACION.
$lblMC = array();
$valMC = array();
$lblNC = array();
$valNC = array();
$W2 = "\tAND\n\t\t\t\t(`captacion_cuentas`.`saldo_cuenta` >0)\n\t\t\t\tAND\n\t\t\t\t((`captacion_cuentas`.`fecha_apertura` >='{$fecha_inicial}')\n\t\t\t\tAND\n\t\t\t\t(`captacion_cuentas`.`fecha_apertura` <='{$fecha_final}')) ";
$DCapTot = $cSuc->getCaptacionTotal($W2);
$lblNC[] = "Cuentas";
$valNC[] = $DCapTot["numero"];
$lblMC[] = "Tot. Captacion";
$valMC[] = round($DCapTot["monto"] / 1000, 2);
//Capatcion.- A la Vista
$DCapTot = $cSuc->getCaptacionTotal($W2 . " AND (`captacion_cuentas`.`tipo_cuenta` =10)");
$lblNC[] = "A_La_Vista";
$valNC[] = $DCapTot["numero"];
$lblMC[] = "Tot. Vista";
$valMC[] = round($DCapTot["monto"] / 1000, 2);
//Inversiones
$DCapTot = $cSuc->getCaptacionTotal($W2 . " AND (`captacion_cuentas`.`tipo_cuenta` =20)");
$lblNC[] = "Inversion";
$valNC[] = $DCapTot["numero"];
$lblMC[] = "Tot. Inversion";