
USETEXTLINKS = 1  
STARTALLOPEN = 0
HIGHLIGHT = 1
PERSERVESTATE = 1

// Revised 6/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>Alpha Sports Lineup', 'javascript:parent.op();')
f = foldersTree
fSub = insFld(f,gFld('<b>AX-50</b> Dirt Bike', 'ASX50.htm'))
fSub = insFld(f,gFld('<b>Pit Bike 90cc</b>', 'ASPITBIKE90.htm'))
fSub = insFld(f,gFld('<b>Pit Bike 110cc</b>', 'ASPITBIKE110.htm'))
fSub = insFld(f,gFld('<b>Mini Cobra 50</b> Atv', 'ASM50.htm'))
fSub = insFld(f,gFld('<b>Cobra 90</b> White/Black Atv', 'ASC90.htm'))
fSub = insFld(f,gFld('<b>Cobra 180</b> Atv', 'ASC180.htm'))
fSub = insFld(f,gFld('<b>Cobra TX 220</b> Atv', 'ASC220.htm'))
fSub = insFld(f,gFld('<b>Daisy 90</b> Atv', 'ASD90.htm'))
fSub = insFld(f,gFld('<b>LG-50</b> Atv', 'ASLG50.htm'))
fSub = insFld(f,gFld('<b>LG-90</b> Atv', 'ASLG90.htm'))
fSub = insFld(f,gFld('<b>Kolt 50</b> Atv', 'ASK50.htm'))
fSub = insFld(f,gFld('<b>Kolt 90</b> Atv', 'ASK90.htm'))
fSub = insFld(f,gFld('<b>REVO 90</b>Atv w/Reverse', 'ASREVO90.htm'))
fSub = insFld(f,gFld('<b>LG-150</b> Atv', 'ASLG150.htm'))
fSub = insFld(f,gFld('<b>Argon 50</b> Scooter', 'ASARGON.htm'))
fSub = insFld(f,gFld('<b>Omega 50</b> Scooter', 'ASOMEGA.htm'))
fSub = insFld(f,gFld('<b>Kaliber LS</b> Scooter Single Seat', 'ASLS.htm'))
fSub = insFld(f,gFld('<b>Kaliber RS</b> Scooter Dual Seat', 'ASRS.htm'))
fSub = insFld(f,gFld('<b>Madoss</b> Scooter', 'ASMADOSS.htm'))
fSub = insFld(f,gFld('<b>TX 50</b> Scooter', 'ASTX50.htm'))
fSub = insFld(f,gFld('<b>RCX 50</b> Scooter', 'ASRCX50.htm'))
fSub = insFld(f,gFld('<b>RCX 150</b> Scooter', 'ASRCX150.htm'))
fSub = insFld(f,gFld('<b>RCX 250</b> Scooter', 'ASRCX250.htm'))
fSub = insFld(f,gFld('<b>Summit/Winchester 180</b> Atv', 'ASSU180.htm'))
fSub = insFld(f,gFld('<b>Overland 180</b> Utility Atv', 'OVERLAND180.htm'))
fSub = insFld(f,gFld('<b>SDX 150 & 200</b> Atv', 'ASSDX150.htm'))
fSub = insFld(f,gFld('<b>SDX 300</b> Atv', 'ASSDX300.htm'))
fSub = insFld(f,gFld('<b>Sidewinder 150</b> Go-Kart', 'ASSD150.htm'))
fSub = insFld(f,gFld('<b>Punisher 150</b> Go-Kart', 'ASPUNISHER.htm'))
fSub = insFld(f,gFld('<b>Crossfire 150</b> Go-Kart (Yellow)', 'ASCROSSFIRE.htm'))
fSub = insFld(f,gFld('<b>Crossfire"R" 150</b> Go-Kart (Silver and Red)', 'ASCROSSFIRER.htm'))

foldersTree.treeID = "ASModel" 
