var TITEMS = [ 
 ["Welcome", "source/firsttopic.htm", "1",
  ["Feature List", "source/feature_list.htm", "11"],
  ["Compatibility", "source/compatibility.htm", "11"]
 ],
 ["Installation", "source/installation.htm", "1",
  ["Command Line", "source/command_line.htm", "11"],
  ["Admin Tools", "source/admin_tools.htm", "11"],
  ["GINA", "source/gina.htm", "11"],
  ["Files", "source/files.htm", "11"],
  ["License Key", "source/license_key.htm", "11"],
  ["Group Policy Distribution", "source/group_policy_distribution.htm", "11"]
 ],
 ["Configuration", "source/administrative_configuration.htm", "1",
  ["Group Policy For Screen Pass", "source/group_policy_for_screen_pass.htm", "1",
   ["Loading Spass6.adm", "source/loading_spass6_adm.htm", "11"]
  ],
  ["Screen Pass Administrator", "source/screen_pass_administrator.htm", "1",
   ["Viewing Effective Settings", "source/viewing_effective_settings.htm", "11"]
  ],
  ["Policy Reference", "source/policy_reference.htm", "11"],
  ["Registry Settings", "source/registry_settings.htm", "11"]
 ],
 ["User Interface", "source/user_interface.htm", "1",
  ["Main Password Window", "source/main_password_dialog.htm", "11"],
  ["Admin Password Window", "source/admin_password_dialog.htm", "11"],
  ["Screen Pass Tab", "source/display_properties_dialog.htm", "11"]
 ],
 ["Features", "source/features.htm", "1",
  ["Screen Saver Enforcement", "source/screen_saver_enforcement.htm", "11"],
  ["Administrator Override", "source/administrator_override.htm", "1",
   ["True Administrators", "source/true_administrators.htm", "11"],
   ["'Screen Pass Only' Administrators", "source/_unlock_only__administrators.htm", "11"]
  ],
  ["Auto Logout", "source/auto_logout.htm", "11"],
  ["Auto Shutdown", "source/auto_shutdown.htm", "11"],
  ["Event Logging", "source/event_logging.htm", "1",
   ["Computer Event Log", "source/windows_application_log.htm", "11"],
   ["Text File", "source/text_file.htm", "11"],
   ["ODBC", "source/odbc.htm", "11"]
  ],
  ["Logoff Button", "source/logoff_button.htm", "11"],
  ["ADS Logon Hours Enforcement", "source/ads_logon_hours_enforcement.htm", "11"],
  ["Remote Control", "source/remote_control.htm", "11"],
  ["Screen Saver Suspend", "source/suspend_screen_saver.htm", "11"],
  ["Screen Savers", "source/screen_savers.htm", "1",
   ["Screen Pass Bouncing Image", "source/screen_pass_bouncing_image.htm", "11"],
   ["Screen Pass Slide Show", "source/screen_pass_slide_show.htm", "11"]
  ],
  ["Fingerprint/Biometric", "source/fingerprint_biometric.htm", "1",
   ["UPEK", "source/udek.htm", "11"],
   ["Bypassing GINA dialogs", "source/bypassing_gina_dialogs.htm", "11"]
  ]
 ],
 ["Contact Information", "source/contact_information.htm", "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;
}


