
USETEXTLINKS = 1  
STARTALLOPEN = 0
HIGHLIGHT = 1
PERSERVESTATE = 0


// 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)
}
// Beginning of menu
foldersTree = gFld('Arctic Cat Tigershark Parts', 'javascript:parent.op();')
f = foldersTree
fSub = insFld(f,gFld('<b>1999', '1999Water.htm'))
fSub = insFld(f,gFld('<b>1998', '1998Water.htm'))
fSub = insFld(f,gFld('<b>1997', '1997Water.htm'))
fSub = insFld(f,gFld('<b>1996', '1996Water.htm'))
fSub = insFld(f,gFld('<b>1995', '1995Water.htm'))
fSub = insFld(f,gFld('<b>1994', '1994Water.htm'))
fSub = insFld(f,gFld('<b>1993', '1993Water.htm'))

foldersTree.treeID = "W1234" 
