var TITEMS = [ 
 ["Introduction", "index.htm", "4",
  ["About Total Privacy 5.0 Help", "about_help.htm", "11"],
  ["What's New in Total Privacy 5.0", "whatsnew.htm", "12"],
  ["Buy the Full Version of Total Privacy", "buy.htm", "1",
   ["Unlock the Full Version of Total Privacy", "unlock.htm", "11"]
  ],
  ["System Requirements", "system_requirements.htm", "11"]
 ],
 ["Getting Started", "getting_started.htm", "2",
  ["Downloading and Installing", "downloading_installing.htm", "11"],
  ["Starting Total Privacy 5.0", "start.htm", "11"],
  ["Quick Start Options", "quick_start.htm", "11"],
  ["Uninstalling Total Privacy 5.0", "uninstall.htm", "11"]
 ],
 ["Privacy Items", "privacy_items.htm", "1",
  ["Windows XP Professional", "windows.htm", "1",
   ["Start Menu and Desktop", "start_menu.htm", "11"],
   ["Windows System", "windows_system.htm", "11"],
   ["Recent Activity", "recent_activity.htm", "11"],
   ["MS Office 2003", "ms_office_2003.htm", "11"],
   ["Outlook Express", "outlook_express.htm", "11"]
  ],
  ["Internet Browsers", "browsers.htm", "1",
   ["Internet Explorer", "internet_explorer.htm", "11"],
   ["Netscape", "netscape.htm", "11"],
   ["FireFox", "firefox.htm", "11"],
   ["Mozilla", "mozilla.htm", "11"],
   ["America Online", "america_online.htm", "11"],
   ["Opera", "opera.htm", "11"]
  ],
  ["Edit Typed URL History", "edit_typed_url_history.htm", "2"],
  ["Selecting Cookies to Keep", "cookies.htm", "2"],
  ["Selecting Components to Keep", "components.htm", "2"],
  ["Instant Messaging", "messaging.htm", "1",
   ["MSN Messenger", "msn_messenger.htm", "11"],
   ["AOL IM", "aol_im.htm", "11"],
   ["ICQ", "icq.htm", "11"],
   ["Yahoo! IM", "yahoo!_im.htm", "11"]
  ],
  ["Custom Plugins", "custom_plugins.htm", "11"],
  ["Free Space", "free_space.htm", "11"]
 ],
 ["Profiles", "profiles.htm", "1",
  ["Profile Automation", "profile_automation.htm", "11"]
 ],
 ["Options", "options.htm", "1",
  ["Program Settings", "program_settings.htm", "11"],
  ["Running Browsers", "running_browsers.htm", "11"],
  ["Security", "security.htm", "11"]
 ],
 ["Privacy Utilities", "privacy_utilities.htm", "1",
  ["Internet Explorer Utilities", "internet_explorer_utilities.htm", "11"],
  ["Shredding", "shredding.htm", "11"],
  ["AutoStart Programs", "autostart_programs.htm", "11"],
  ["Passwords Generator", "passwords_generator.htm", "11"]
 ],
 ["Check for Updates", "check_updates.htm", "15"],
 ["Contact Pointstone / Service and Support", null, "1",
  ["Frequently Asked Questions (FAQ)", "faq.htm", "11"],
  ["Contact Us", "contact_us.htm", "11"],
  ["Total Privacy Web Site", "http://www.pointstone.com/products/totalprivacy/", "15"]
 ],
 ["License Agreement", "license_agreement.htm", "21"],
 ["Glossary of Terms", "glossary_of_terms.htm", "11"]
];


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) && (x[i+1] != null))
          y[y.length]=x[i+1];
      }
   }
   return y;
}

function arr_findNext (url, cnt)
{
   var y = arr_flatten(TITEMS);
   for (var i = 0; i<y.length; i++) {
     if (y[i] == url) {
       ni = i + cnt;
       if (ni < 0) ni = 0;
       if (ni > y.length-1) ni = y.length-1;

       return y[ni];
     }
   }
   return "";
}

