public function listadoAmbientesLogicos($datos)
 {
     $oLMantenimientoGeneral = new LMantenimientoGeneral();
     $datos == '' ? $arrayFilas1 = array() : ($arrayFilas1 = $oLMantenimientoGeneral->getListaAmbientesLogicos($datos));
     $arrayCabecera = array("1" => "NOMBRE C.COSTO", "2" => "NOMBRE AMBIENTE LÓGICO", "4" => "...", "5" => "...", "6" => "...", "7" => " ");
     //        $arrayTipo=array("1"=>"c","2"=>"c","3"=>"h","4"=>"h");
     $arrayTipo = array("1" => "c", "2" => "c", "4" => "h", "5" => "h", "6" => "h", "7" => "h");
     $o_Tabla = new Tabla1($arrayCabecera, 10, $arrayFilas1, 'tablaOrden', 'filax', 'filay', 'filaSeleccionada', 'OnClick', 'irmostrarAmbienteLogico', 0, $arrayTipo);
     $tablaHTML = $o_Tabla->getTabla();
     $row_ini = "<table width='100%'>";
     $row_fin = "</table>";
     return $row_ini . $tablaHTML . $row_fin;
 }