/* Windows NT 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_intro", "in_intro.htm", "Introduction");
oBrowseArray[++n] = new browseObject("in_installing", "in_installing.htm", "Installing the Windows 2000 Resource Kit");
oBrowseArray[++n] = new browseObject("in_finding", "in_finding.htm", "Finding the Tools You Need");
oBrowseArray[++n] = new browseObject("in_procedures", "in_procedures.htm", "Procedural Conventions");
oBrowseArray[++n] = new browseObject("in_notation", "in_notation.htm", "Notational Conventions");
oBrowseArray[++n] = new browseObject("in_terminology", "in_terminology.htm", "Terminology Conventions");
oBrowseArray[++n] = new browseObject("in_new", "in_new.htm", "New tools");
oBrowseArray[++n] = new browseObject("in_server", "in_server.htm", "Tools Included Only In Windows 2000 Server Resource Kit");
oBrowseArray[++n] = new browseObject("in_support", "in_support.htm", "Tools Available in Windows 2000 Support Tools");
oBrowseArray[++n] = new browseObject("in_legacy", "in_legacy.htm", "Legacy Tools");
oBrowseArray[++n] = new browseObject("in_internet", "in_internet.htm", "Internet Resources");
oBrowseArray[++n] = new browseObject("in_disclaimer", "in_disclaimer.htm", "Disclaimer");
oBrowseArray[++n] = new browseObject("in_copyright", "in_copyright.htm", "Copyright Information");
oBrowseArray[++n] = new browseObject("iw_deploy", "iw_deploy.htm", "I want to install Windows 2000 on multiple computers");