/* 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("overview", "Overview.htm", "Overview");
oBrowseArray[++n] = new browseObject("system_requirements", "system_requirements.htm", "System requirements");
oBrowseArray[++n] = new browseObject("user_privilege", "user_privilege.htm", "User Privilege requirements");
oBrowseArray[++n] = new browseObject("customizing_wsh", "customizing_wsh.htm", "Customizing Windows Scripting Host");
oBrowseArray[++n] = new browseObject("in_notation", "in_notation.htm", "Notational Conventions in this Document");
oBrowseArray[++n] = new browseObject("in_disclaimer", "disclaimer.htm", "Disclaimer");
oBrowseArray[++n] = new browseObject("further_information", "further_information.htm", "Further Information and Web Links");