
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
// COBRA 90
fSub = insFld(f,gFld('Cobra 90 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 (90cc)','/Alpha/COBRA90/01.htm'))
insDoc(fSub,gLnk('Rp','CARBURETOR (90cc)','/Alpha/COBRA90/02.htm'))
insDoc(fSub,gLnk('Rp','CHAIN (90cc)','/Alpha/COBRA90/03.htm'))
insDoc(fSub,gLnk('Rp','CRANKCASE (90cc)','/Alpha/COBRA90/04.htm'))
insDoc(fSub,gLnk('Rp','CRANKSHAFT (90 cc)','/Alpha/COBRA90/05.htm'))
insDoc(fSub,gLnk('Rp','CYLINDER HEAD (90 cc)','/Alpha/COBRA90/06.htm'))
insDoc(fSub,gLnk('Rp','DECALS (90cc)','/Alpha/COBRA90/07.htm'))
insDoc(fSub,gLnk('Rp','DRIVE PULLEY (90cc)','/Alpha/COBRA90/08.htm'))
insDoc(fSub,gLnk('Rp','DRIVE SHAFT (90cc)','/Alpha/COBRA90/09.htm'))
insDoc(fSub,gLnk('Rp','ELECTRICAL PARTS (90cc)','/Alpha/COBRA90/10.htm'))
insDoc(fSub,gLnk('Rp','ENGINE BRACKET (90cc)','/Alpha/COBRA90/11.htm'))
insDoc(fSub,gLnk('Rp','EXHAUST PIPE (90cc)','/Alpha/COBRA90/12.htm'))
insDoc(fSub,gLnk('Rp','FAN COVER (90cc)','/Alpha/COBRA90/13.htm'))
insDoc(fSub,gLnk('Rp','FENDER (90cc)','/Alpha/COBRA90/14.htm'))
insDoc(fSub,gLnk('Rp','FRAME BODY (90cc)','/Alpha/COBRA90/15.htm'))
insDoc(fSub,gLnk('Rp','FRONT BRAKE SYSTEM','/Alpha/COBRA90/16.htm'))
insDoc(fSub,gLnk('Rp','FRONT HEAD LIGHT, TAIL LIGHT (90cc)','/Alpha/COBRA90/17.htm'))
insDoc(fSub,gLnk('Rp','FRONT WHEEL (90cc)','/Alpha/COBRA90/18.htm'))
insDoc(fSub,gLnk('Rp','GEAR SHAFT LEVER','/Alpha/COBRA90/19.htm'))
insDoc(fSub,gLnk('Rp','GENERATOR,START MOTOR (90cc)','/Alpha/COBRA90/20.htm'))
insDoc(fSub,gLnk('Rp','HANDLE BAR (90cc)','/Alpha/COBRA90/21.htm'))
insDoc(fSub,gLnk('Rp','OIL PUMP ASSY (90cc)','/Alpha/COBRA90/22.htm'))
insDoc(fSub,gLnk('Rp','OIL TANK, FUEL TANK (90cc)','/Alpha/COBRA90/23.htm'))
insDoc(fSub,gLnk('Rp','OPTION PARTS','/Alpha/COBRA90/24.htm'))
insDoc(fSub,gLnk('Rp','REAR BRAKE SYSTEM','/Alpha/COBRA90/25.htm'))
insDoc(fSub,gLnk('Rp','REAR WHEEL (90cc)','/Alpha/COBRA90/26.htm'))
insDoc(fSub,gLnk('Rp','REAR WHEEL AXLE (90cc)','/Alpha/COBRA90/27.htm'))
insDoc(fSub,gLnk('Rp','SEAT (90cc)','/Alpha/COBRA90/28.htm'))
insDoc(fSub,gLnk('Rp','STANDARD ACCESSORY (90cc)','/Alpha/COBRA90/29.htm'))
insDoc(fSub,gLnk('Rp','STARTER (90cc)','/Alpha/COBRA90/30.htm'))
insDoc(fSub,gLnk('Rp','STEERING (90cc)','/Alpha/COBRA90/31.htm'))
insDoc(fSub,gLnk('Rp','SUSPENSION (90cc)','/Alpha/COBRA90/32.htm'))
insDoc(fSub,gLnk('Rp','SWING ARM,FOOTREST,FEND BAR (90cc)','/Alpha/COBRA90/33.htm'))


foldersTree.treeID = "ASC90" 

