
USETEXTLINKS = 1  
STARTALLOPEN = 1
HIGHLIGHT = 1
PERSERVESTATE = 1

// Revised 8/28/03

// If you don't have server-side coding, make your nodes.js file similar to the others
// in the ZIP, not this one.
// Without a database, the auxiliary functions defined and used here are the only way 
// I am able to test the "PERSERVESTATE through .xID keys" functionality. 
// Your server side code will do something similar, but without the need to these functions.
// It will simply output nodes with two lines of statements, one for insDoc or insFld call,
// the other with the assignment of xID to an actual database ID
// See online instructions for limitations on the use of xID
var counterI = 0
function insFldX(parentOb, childOb)
{
  childOb.xID = 'X' + counterI;
  counterI--;
  return insFld(parentOb, childOb)
}
function insDocX(parentOb, childOb)
{
  childOb.xID = 'Y' + counterI;
  counterI--;
  return insDoc(parentOb, childOb)
}

foldersTree = gFld('<b>Descriptions-Click to Open', 'javascript:parent.op();')
f = foldersTree

// Dirt Squirt 50
fSub = insFld(f,gFld('DIRT SQUIRT 50', 'javascript:parent.op();'))
insDoc(fSub,gLnk('Rp','AIR CLEANER','/um/2004_DIRT_SQUIRT_50/01.htm'))
insDoc(fSub,gLnk('Rp','AIR COOLING SYSTEM','/um/2004_DIRT_SQUIRT_50/02.htm'))
insDoc(fSub,gLnk('Rp','CARBURETOR ASSY','/um/2004_DIRT_SQUIRT_50/03.htm'))
insDoc(fSub,gLnk('Rp','CLUTCH ASSY','/um/2004_DIRT_SQUIRT_50/04.htm'))
insDoc(fSub,gLnk('Rp','CRANKCASE ASSY','/um/2004_DIRT_SQUIRT_50/05.htm'))
insDoc(fSub,gLnk('Rp','CYLINDER HEAD ASSY','/um/2004_DIRT_SQUIRT_50/06.htm'))
insDoc(fSub,gLnk('Rp','DRIVE SYSTEM','/um/2004_DIRT_SQUIRT_50/07.htm'))
insDoc(fSub,gLnk('Rp','ELECTRIC','/um/2004_DIRT_SQUIRT_50/08.htm'))
insDoc(fSub,gLnk('Rp','FRAME I','/um/2004_DIRT_SQUIRT_50/09.htm'))
insDoc(fSub,gLnk('Rp','FRAME II','/um/2004_DIRT_SQUIRT_50/10.htm'))
insDoc(fSub,gLnk('Rp','FRONT ABSORBER','/um/2004_DIRT_SQUIRT_50/11.htm'))
insDoc(fSub,gLnk('Rp','FRONT WHEEL','/um/2004_DIRT_SQUIRT_50/12.htm'))
insDoc(fSub,gLnk('Rp','FUEL TANK','/um/2004_DIRT_SQUIRT_50/13.htm'))
insDoc(fSub,gLnk('Rp','KICK STARTER ASSY','/um/2004_DIRT_SQUIRT_50/14.htm'))
insDoc(fSub,gLnk('Rp','MAGNETO ASSY','/um/2004_DIRT_SQUIRT_50/15.htm'))
insDoc(fSub,gLnk('Rp','MUFFLER','/um/2004_DIRT_SQUIRT_50/16.htm'))
insDoc(fSub,gLnk('Rp','OIL PUMP ASSY','/um/2004_DIRT_SQUIRT_50/17.htm'))
insDoc(fSub,gLnk('Rp','OIL TANK','/um/2004_DIRT_SQUIRT_50/18.htm'))
insDoc(fSub,gLnk('Rp','PISTON CRANKSHAFT CONNECTING ROD ASSY','/um/2004_DIRT_SQUIRT_50/19.htm'))
insDoc(fSub,gLnk('Rp','REAR ABSORBER','/um/2004_DIRT_SQUIRT_50/20.htm'))
insDoc(fSub,gLnk('Rp','REAR SWINGING ARM','/um/2004_DIRT_SQUIRT_50/21.htm'))
insDoc(fSub,gLnk('Rp','REAR WHEEL','/um/2004_DIRT_SQUIRT_50/22.htm'))
insDoc(fSub,gLnk('Rp','REED VALVE ASSY','/um/2004_DIRT_SQUIRT_50/23.htm'))
insDoc(fSub,gLnk('Rp','SEAT','/um/2004_DIRT_SQUIRT_50/24.htm'))
insDoc(fSub,gLnk('Rp','SIDE COVER','/um/2004_DIRT_SQUIRT_50/25.htm'))
insDoc(fSub,gLnk('Rp','STAND FOOTREST','/um/2004_DIRT_SQUIRT_50/26.htm'))
insDoc(fSub,gLnk('Rp','STEERING','/um/2004_DIRT_SQUIRT_50/27.htm'))
insDoc(fSub,gLnk('Rp','TOOL KIT','/um/2004_DIRT_SQUIRT_50/28.htm'))
insDoc(fSub,gLnk('Rp','TRANSMISSION SYSTEM ASSY','/um/2004_DIRT_SQUIRT_50/29.htm'))

foldersTree.treeID = "UMDS50" 

