
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 Generator Parts', 'javascript:parent.op();')
f = foldersTree
fSub = insFld(f,gFld('<b>AC-750', 'GEN_AC750G.htm'))
fSub = insFld(f,gFld('<b>AC-1400G', 'GEN_AC1400G.htm'))
fSub = insFld(f,gFld('<b>AC-1800G', 'GEN_AC1800G.htm'))
fSub = insFld(f,gFld('<b>AC-2200G', 'GEN_AC2200G.htm'))
fSub = insFld(f,gFld('<b>AC-2500G', 'GEN_AC2500G.htm'))
fSub = insFld(f,gFld('<b>AC-2500GD', 'GEN_AC2500GD.htm'))
fSub = insFld(f,gFld('<b>AC-2500GD II', 'GEN_AC2500GD2.htm'))
fSub = insFld(f,gFld('<b>AC-3000GD II', 'GEN_AC3000GD2.htm'))
fSub = insFld(f,gFld('<b>AC-4000G2', 'GEN_AC4000G2.htm'))
fSub = insFld(f,gFld('<b>AC-4000GD', 'GEN_AC4000GD.htm'))
fSub = insFld(f,gFld('<b>AC-4000GD2E', 'GEN_AC4000GD2E.htm'))
fSub = insFld(f,gFld('<b>AC-7500GD2E', 'GEN_AC7500GD2E.htm'))

foldersTree.treeID = "gen" 
