public function generarMosaico($idSalon)
 {
     if ($this->verificarSession()) {
         $cfg = Configuracion::getConfiguracion('colegio');
         $colegio = $cfg['NOMBRE'];
         $reporte = new Reportes();
         if ($colegio == "galois") {
             //$reporte->boletinGalois($idSalon, $periodo);
         } elseif ($colegio == "santaTeresita") {
             $reporte->mosaicoSantaTeresita($idSalon);
         }
     }
 }