home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 May / W2KPRK.iso / document.cab / w2rktool.chm / scripts / browse-iw.js < prev    next >
Text File  |  1999-12-20  |  2KB  |  29 lines

  1. /* Windows 2000 Resource Kit - Browse Sequence for Introductory Topics
  2. version 0.5 - November 5, 1998
  3. by Peter Costantini */
  4.  
  5. /* Construct browse sequence object. */
  6.  
  7. function browseObject(sTopicId, sFileName, sFullName)
  8. {
  9.     this.topicid = sTopicId;
  10.     this.filename = sFileName;
  11.     this.fullname = sFullName;
  12. }
  13.  
  14. /*
  15. Create array and populate with instances of browse sequence object. Increment the array for each new object rather than assign a number, so that later new objects can be added without having to change whole sequence.
  16. */
  17.  
  18. var n = -1;
  19. var oBrowseArray = new Array();
  20.  
  21. oBrowseArray[++n] = new browseObject("in_copyright", "in_copyright.htm", "Copyright Information");
  22. oBrowseArray[++n] = new browseObject("iw_deploy", "iw_deploy.htm", "I want to deploy Windows 2000 on multiple computers");
  23. oBrowseArray[++n] = new browseObject("iw_disks", "iw_disks.htm", "I want to maintain disk information");
  24. oBrowseArray[++n] = new browseObject("iw_internet", "iw_internet.htm", "I want to set up and administer an Internet server");
  25. oBrowseArray[++n] = new browseObject("iw_security", "iw_security.htm", "I want to protect computing resources");
  26. oBrowseArray[++n] = new browseObject("iw_registry", "iw_registry.htm", "I want to work with the Windows 2000 registry");
  27. oBrowseArray[++n] = new browseObject("iw_service", "iw_service.htm", "I want to install or remove services");
  28. oBrowseArray[++n] = new browseObject("iw_unix", "iw_unix.htm", "I want to use UNIX commands within Windows 2000");
  29.