var nCols = 3;  /* maximum number of levels */
var tocTab = new Array();  /* holds the table of contents */
var nArray=0; /* used to count through the table of contents */
function sTOC(index,name,url,test)
{
	tocTab[nArray]=new Array(index,name,url,test,"","","");
	nArray++;
}
function initTOC()
{
sTOC("0","Introduction","main/intro.htm","");
sTOC("1","Benefits","main/benefits.htm","");
sTOC("2","Features","features/features.htm","");
sTOC("2.1","Table of Contents","features/toc.htm","");
sTOC("2.2","Navigation","features/nav.htm","");
sTOC("2.3","Links","features/links.htm","");
sTOC("2.4","Content","features/content.htm","");
sTOC("2.5","Storyboards","storyboards/intro.htm","");
sTOC("2.5.1","Narrated Tutorial","storyboards/narrated.htm","");
sTOC("2.5.2","Speculation","storyboards/speculate.htm","");
sTOC("2.5.3","Comparison","storyboards/compare.htm","");
sTOC("2.5.4","True/False","storyboards/tf.htm","t");
sTOC("2.5.5","Multiple Choice Text","storyboards/mc.htm","t");
sTOC("2.5.6","Multiple Choice Graphics","storyboards/mcg.htm","t");
sTOC("2.5.7","Order Items","storyboards/order.htm","t");
sTOC("2.5.8","Test Summary","storyboards/test.htm","");
sTOC("2.6","Multiple Delivery","deliver/intro.htm","");
sTOC("2.6.1","SCORM","deliver/scorm.htm","");
sTOC("2.6.2","Local","deliver/cdrom.htm","");
sTOC("2.6.3","Web Site","deliver/website.htm","");
sTOC("3","Documentation","docs/docintro.htm","");
sTOC("3.1","Create a Course","docs/course.htm","");
sTOC("3.1.1","Table of Contents","noinfo.htm","");
sTOC("3.1.2","Create Pages","noinfo.htm","");
sTOC("3.1.3","Use Templates","noinfo.htm","");
sTOC("3.1.4","Create Templates","noinfo.htm","");
sTOC("3.2","Configure Course","docs/layout.htm","");
sTOC("3.2.1","Frameset","noinfo.htm","");
sTOC("3.2.2","Table of Contents","noinfo.htm","");
sTOC("3.2.3","Navigation","noinfo.htm","");
sTOC("3.2.4","Links","noinfo.htm","");
sTOC("3.3","Modify Software","docs/intro.htm","");
sTOC("3.3.1","Initialize","noinfo.htm","");
sTOC("3.3.2","Terminate","noinfo.htm","");
sTOC("3.3.3","Navigation","noinfo.htm","");
sTOC("3.3.4","SCORM Delivery","noinfo.htm","");
sTOC("3.3.5","CD-ROM Delivery","noinfo.htm","");
sTOC("3.3.6","Web Site Delivery","noinfo.htm","");
}