// You can find instructions for this file here:
// http://www.treeview.net

// Decide if the names are links or just the icons
USETEXTLINKS = 1  //replace 0 with 1 for hyperlinks

// Decide if the tree is to start all open or just showing the root folders
STARTALLOPEN = 0 //replace 0 with 1 to show the whole tree

ICONPATH = '../Treeview/' //change if the gif's folder is a subfolder, for example: 'images/'
WRAPTEXT = 1

function setbaseframe(arg){
	var frames = top.document.getElementsByTagName('iframe');
	var baseframe = frames[0];
	baseframe.src = arg
}

foldersTree = gFld("<i>Starting off</i>", "")
  aux1 = insFld(foldersTree, gFld("Introduction", "Bootcamp/Introduction.htm"))
    aux2 = insFld(aux1, gLnk("S", "About", "javascript:setbaseframe(\\\'Bootcamp/About.htm\\')"))
      insDoc(aux1, gLnk("S", "Professional Entrepreneurship", "javascript:setbaseframe(\\\'Bootcamp/ProfessionalEntrepreneurship.htm\\\')"))
      insDoc(aux1, gLnk("S", "Idea vs Reality", "javascript:setbaseframe(\\\'Bootcamp/IdeaVsReality.htm\\\')"))
      insDoc(aux1, gLnk("S", "Motivations", "javascript:setbaseframe(\\\'Bootcamp/Motivations.htm\\\')"))


aux1 = insFld(foldersTree, gFld("B-Plan Checkpoints", "BPlanCheckpoints.html"))
    aux2 = insFld(aux1, gLnk("S", "Sizing the Market", "javascript:setbaseframe(\\\'Bootcamp/SizingMarket.htm\\\')"))
      insDoc(aux1, gLnk("S", "The product", "javascript:setbaseframe(\\\'Bootcamp/Product.htm\\\')"))
      insDoc(aux1, gLnk("S", "The Competition", "javascript:setbaseframe(\\\'Bootcamp/Competition.htm\\\')"))
      insDoc(aux1, gLnk("S", "Execution", "javascript:setbaseframe(\\\'Bootcamp/Execution.htm\\\')"))
      insDoc(aux1, gLnk("S", "Funding", "javascript:setbaseframe(\\\'Bootcamp/Funding.htm\\\')"))
      insDoc(aux1, gLnk("S", "Marketing", "javascript:setbaseframe(\\\'Bootcamp/Marketing.htm\\\')"))
      insDoc(aux1, gLnk("S", "Management", "javascript:setbaseframe(\\\'Bootcamp/Management.htm\\\')"))
      insDoc(aux1, gLnk("S", "Risks and Contingencies", "javascript:setbaseframe(\\\'Bootcamp/RisksContingencies.htm\\\')"))

