
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
// OVERLAND 180
fSub = insFld(f,gFld('Overland 180 Utility Atv', 'javascript:parent.op();'))
insDoc(fSub,gLnk("Sp", "<b>Service Manual for all models", "/alphapart.php?part_number=CDMANUAL"))
insDoc(fSub,gLnk('Rp','AIR CLEANER','/Alpha/OVERLAND180/01.htm'))
insDoc(fSub,gLnk('Rp','BUMPER - FRONT AND REAR RACK','/Alpha/OVERLAND180/02.htm'))
insDoc(fSub,gLnk('Rp','CAM CHAIN TENSIONER','/Alpha/OVERLAND180/03.htm'))
insDoc(fSub,gLnk('Rp','CAMSHAFT VALVE CYLINDER HEAD','/Alpha/OVERLAND180/04.htm'))
insDoc(fSub,gLnk('Rp','CARBURETOR EXHAUST MUFFLER','/Alpha/OVERLAND180/05.htm'))
insDoc(fSub,gLnk('Rp','CHAIN','/Alpha/OVERLAND180/06.htm'))
insDoc(fSub,gLnk('Rp','CRANK SHAFT PISTON','/Alpha/OVERLAND180/07.htm'))
insDoc(fSub,gLnk('Rp','CRANKCASE','/Alpha/OVERLAND180/08.htm'))
insDoc(fSub,gLnk('Rp','CYLINDER HEAD COVER','/Alpha/OVERLAND180/09.htm'))
insDoc(fSub,gLnk('Rp','CYLINDER','/Alpha/OVERLAND180/10.htm'))
insDoc(fSub,gLnk('Rp','DECALS','/Alpha/OVERLAND180/11.htm'))
insDoc(fSub,gLnk('Rp','DRIVE FACE','/Alpha/OVERLAND180/12.htm'))
insDoc(fSub,gLnk('Rp','DRIVEN FACE','/Alpha/OVERLAND180/13.htm'))
insDoc(fSub,gLnk('Rp','ELECTRICAL PARTS','/Alpha/OVERLAND180/14.htm'))
insDoc(fSub,gLnk('Rp','FAN COVER SHROUD','/Alpha/OVERLAND180/15.htm'))
insDoc(fSub,gLnk('Rp','FENDER','/Alpha/OVERLAND180/16.htm'))
insDoc(fSub,gLnk('Rp','FRAME BODY','/Alpha/OVERLAND180/17.htm'))
insDoc(fSub,gLnk('Rp','FRONT BRAKE DISK SYSTEM','/Alpha/OVERLAND180/18.htm'))
insDoc(fSub,gLnk('Rp','FRONT WHEEL','/Alpha/OVERLAND180/19.htm'))
insDoc(fSub,gLnk('Rp','FUEL TANK','/Alpha/OVERLAND180/20.htm'))
insDoc(fSub,gLnk('Rp','GENERATOR START MOTOR','/Alpha/OVERLAND180/21.htm'))
insDoc(fSub,gLnk('Rp','HANDLE STEERING COMP','/Alpha/OVERLAND180/22.htm'))
insDoc(fSub,gLnk('Rp','HEAD LIGHT TAIL LIGHT','/Alpha/OVERLAND180/23.htm'))
insDoc(fSub,gLnk('Rp','LEFT CRANKCASE COVER','/Alpha/OVERLAND180/24.htm'))
insDoc(fSub,gLnk('Rp','OIL PUMP','/Alpha/OVERLAND180/25.htm'))
insDoc(fSub,gLnk('Rp','REAR BRAKE DISK SYSTEM','/Alpha/OVERLAND180/26.htm'))
insDoc(fSub,gLnk('Rp','REAR WHEEL AXLE','/Alpha/OVERLAND180/27.htm'))
insDoc(fSub,gLnk('Rp','REAR WHEEL','/Alpha/OVERLAND180/28.htm'))
insDoc(fSub,gLnk('Rp','RIGHT CRANKCASE COVER','/Alpha/OVERLAND180/29.htm'))
insDoc(fSub,gLnk('Rp','SEAT','/Alpha/OVERLAND180/30.htm'))
insDoc(fSub,gLnk('Rp','STANDARD ACCESSORY','/Alpha/OVERLAND180/31.htm'))
insDoc(fSub,gLnk('Rp','STEERING','/Alpha/OVERLAND180/32.htm'))
insDoc(fSub,gLnk('Rp','SUSPENSION','/Alpha/OVERLAND180/33.htm'))
insDoc(fSub,gLnk('Rp','SWING ARM - FOOTREST','/Alpha/OVERLAND180/34.htm'))
insDoc(fSub,gLnk('Rp','TRANSMISSION','/Alpha/OVERLAND180/35.htm'))


foldersTree.treeID = "OVERLAND180" 

