var TITEMS = [ 
 ["HSLAB Access Control Help System", null, "1",
  ["About this Manual", "about_this_manual.html", "17"],
  ["What's new", "whats_new.html", "11"],
  ["What is it", "what_is.html", "17"],
  ["HSLAB Access Control Products Family", "hslab_access_control_products_family.html", "17"],
  ["HSLAB Access Control NEE (Network Edition Enterprise)", "hslab_access_control_nee.html", "17"],
  ["HSLAB Access Control NES (Network Edition Standard)", "hslab_access_control_nes.html", "17"],
  ["HSLAB Access Control NESB (Network Edition Small Business)", "hslab_access_control_nesb.html", "17"],
  ["HSLAB Access Control NEF (Network Edition Family)", "hslab_access_control_nef.html", "17"],
  ["HSLAB Access Control TSEE (Terminal Server Edition Enterprise)", "hslab_access_control_tsee.html", "17"],
  ["HSLAB Access Control TSES (Terminal Server Edition Standard)", "hslab_access_control_tses.html", "17"],
  ["HSLAB Access Control TSSB (Terminal Server Edition Small Business)", "hslab_access_control_tssb.html", "17"],
  ["HSLAB Access Control PE (Personal Edition)", "hslab_access_control_pe.html", "17"],
  ["System Requirements", "system_requirements.html", "17"],
  ["Installation Guide", "installation_guide.html", "1",
   ["Network editions", "network_editions.html", "11",
    ["Configuring network editions", "configuring_network_editions.html", "11"],
    ["Manual Agent Deployment", "manual_agent_deployment.html", "11"]
   ],
   ["Terminal server editions", "terminal_server_editions.html", "11"]
  ],
  ["Software Editions", "http://www.sys-monitoring.com/products/ac4/hslab-access-control-editions-matrix.php", "14"],
  ["What you should know", null, "2",
   ["Download software from the Internet", "download_software_from_the_int.html", "11"],
   ["Try Before You Buy", "try_before_you_buy.html", "11"],
   ["Evaluation version, trial period ...", "evaluation_version_trial_perio.html", "11"],
   ["How to get software working?", "how_to_get_software_working.html", "11"],
   ["On-line customer support", "on_line_customer_support.html", "11"]
  ],
  ["Before You Begin", null, "1",
   ["How it works", "how_it_works.html", "17"],
   ["Why This Software?", "why.html", "11"]
  ],
  ["Work With the Program", "work_with_the_program.html", "1",
   ["View", "view.html", "1",
    ["Active Agents", "active_clients.html", "11"],
    ["Licensed Agents", "licensed_agents.html", "11"],
    ["Current Activity", "current_activity.html", "11"],
    ["Software product editor", "software_product_editor.html", "11"],
    ["Software Usage", "software_usage.html", "11"],
    ["Totals", "totals.html", "11"],
    ["Activity filters", "activity_filters.html", "11"],
    ["Refresh icons cache", "refresh_icons_cache.html", "11"]
   ],
   ["Actions", "actions.html", "1",
    ["Install or Update Agent", "install_or_update_agent.html", "11"],
    ["Auto update Agents", "autoupdate_agents.html", "11"],
    ["Create deployment package", "create_deployment_package.html", "11"],
    ["Uninstall Agent", "uninstall_agent.html", "11"]
   ],
   ["Audit Options", "audit_options.html", "2",
    ["Customize screenshots and audit options", "customize_screenshots_and_audit_options.html", "11"],
    ["Screenshots", "screenshots.html", "11"],
    ["Manage groups", "manage_groups.html", "11"]
   ],
   ["Restrictions", "restrictions.html", "2"],
   ["Settings", "settings.html", "1",
    ["Notifications", "notifications.html", "11"],
    ["Miscellaneous options", "miscellaneous_options.html", "11"]
   ]
  ],
  ["Additional SQL server information", null, "1",
   ["Microsoft� SQL Server� Desktop/Express Engine", null, "1",
    ["Microsoft SQL Server 2000 Desktop Engine (MSDE 2000) Release A", "sql_server_2000_desktop_engine.html", "11"],
    ["Installing Desktop Engine", "installing_desktop_engine.html", "11"],
    ["Installing .NET Framework 2.0", "installing_net_framework_2.html", "11"],
    ["Installing SQL Server 2005 Express Edition", "installing_sql_server_2005_express_edition.html", "11"],
    ["Limiting memory usage for SQL Server 2005 Express Edition", "installing_sql_server_2005_express_edition_2.html", "11"],
    ["Configure a Firewall for SQL Server Access", "configure_a_firewall_for_sql_server_access.html", "11"]
   ]
  ],
  ["Contacts", null, "1",
   ["Company", "company.html", "15"],
   ["Support", "support.html", "11"],
   ["Report a bug", "report_a_bug.html", "24"]
  ],
  ["License Agreement and Registration", null, "1",
   ["END-USER LICENSE AGREEMENT FOR THIS SOFTWARE", "http://www.sys-monitoring.com/products/software-licence.php", "11"],
   ["Distribution of Evaluation Version", "distribution_of_evaluation_version.html", "11"],
   ["Why Register?", "why_register.html", "11"],
   ["Unregistered version limitations", "unregistered_version_limitations.html", "11"],
   ["Register Online", "register_online.html", "11"],
   ["Enter Registration Code", "enter_registration_code.html", "11"]
  ]
 ]
];


var FITEMS = arr_flatten(TITEMS);

function arr_flatten (x) {
   var y = []; if (x == null) return y;
   for (var i=0; i<x.length; i++) {
      if (typeof(x[i]) == "object") {
         var flat = arr_flatten(x[i]);
         for (var j=0; j<flat.length; j++)
             y[y.length]=flat[j];
      } else {
         if ((i%3==0))
          y[y.length]=x[i+1];
      }
   }
   return y;
}

