//
// Copyright (c) 2006 by Conor O'Mahony.
// For enquiries, please email GubuSoft@GubuSoft.com.
// Please keep all copyright notices below.
// Original author of TreeView script is Marcelino Martins.
//
// This document includes the TreeView script.
// The TreeView script can be found at http://www.TreeView.net.
// The script is Copyright (c) 2006 by Conor O'Mahony.
//
// You can find general instructions for this file at www.treeview.net. 
//

// Configures whether the names of the nodes are links (or whether only the icons
// are links).
USETEXTLINKS = 1

// Configures whether the tree is fully open upon loading of the page, or whether
// only the root node is visible.
STARTALLOPEN = 0

// Specify if the images are in a subdirectory;
ICONPATH = ''


foldersTree = gFld("<i>Home</i>", "index_main.html")
  foldersTree.treeID = "Frameset"

  aux1 = insFld(foldersTree, gFld("[Info]", "javascript:parent.op()"))

      insDoc(aux1, gLnk("R", "Docenten", "./index_info.html"))
      insDoc(aux1, gLnk("R", "Contact", "./index_contact.html"))

  aux1 = insFld(foldersTree, gFld("[Agenda]", "./agenda.html"))
  
  aux1 = insFld(foldersTree, gFld("[Links]", "./index_links.html"))
  
  aux1 = insFld(foldersTree, gFld("[Aanmelden]", "javascript:parent.op()"))

      insDoc(aux1, gLnk("R", "Leerling", "./index_form.html"))
      insDoc(aux1, gLnk("R", "Docent", "./index_form2.html"))

  aux1 = insFld(foldersTree, gFld("[Login]", "./index_login.html"))

