/* Windows 2000 Resource Kit - Browse Sequence for Introductory Topics
version 0.5 - November 5, 1998
by Peter Costantini */
/* Construct browse sequence object. */
function browseObject(sTopicId, sFileName, sFullName)
{
this.topicid = sTopicId;
this.filename = sFileName;
this.fullname = sFullName;
}
/*
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.
*/
var n = -1;
var oBrowseArray = new Array();
oBrowseArray[++n] = new browseObject("in_copyright", "in_copyright.htm", "Copyright Information");
oBrowseArray[++n] = new browseObject("iw_deploy", "iw_deploy.htm", "I want to deploy Windows 2000 on multiple computers");
oBrowseArray[++n] = new browseObject("iw_disks", "iw_disks.htm", "I want to maintain disk information");
oBrowseArray[++n] = new browseObject("iw_internet", "iw_internet.htm", "I want to set up and administer an Internet server");
oBrowseArray[++n] = new browseObject("iw_security", "iw_security.htm", "I want to protect computing resources");
oBrowseArray[++n] = new browseObject("iw_registry", "iw_registry.htm", "I want to work with the Windows 2000 registry");
oBrowseArray[++n] = new browseObject("iw_service", "iw_service.htm", "I want to install or remove services");
oBrowseArray[++n] = new browseObject("iw_unix", "iw_unix.htm", "I want to use UNIX commands within Windows 2000");