//
// 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.
//

USETEXTLINKS = 1
STARTALLOPEN = 0
USEFRAMES = 0
USEICONS = 0
WRAPTEXT = 1
PRESERVESTATE = 1

//
// The following code constructs the tree.  This code produces a tree that looks like:
// 
//

foldersTree = gFld("<b>Home</b>", "welcome.htm")
  foldersTree.treeID = "Frameless"
  aux1 = insFld(foldersTree, gFld("About Us", "aboutus.htm"))
    aux2 = insFld(aux1, gFld("Mandate", "mandate.htm"))
      insDoc(aux2, gLnk("B", "Auditing Standards", "http://www.cag.gov.in/html/auditing_standards.htm"))
    aux2 = insFld(aux1, gFld("Information required under RTI Act, 2005", "rti.htm"))
    aux2 = insFld(aux1, gFld("Organisation Chart", "orgchart.htm"))
    aux2 = insFld(aux1, gFld("List of AGs", "listofags.htm"))
  aux1 = insFld(foldersTree, gFld("Audit Wings", "auditwings.htm"))
    aux2 = insFld(aux1, gFld("Accounts of PSUs in arrears", "accountsposition.htm"))
  aux1 = insFld(foldersTree, gFld("Budget", "budget.htm"))
  aux1 = insFld(foldersTree, gFld("Reports", "auditreport.htm"))
    aux2 = insFld(aux1, gFld("Audit Reports", "reports.htm"))
    aux2 = insFld(aux1, gFld("Position of PAC discussion", "pospackdesi.htm"))
    aux2 = insFld(aux1, gFld("Major comments on Accounts of PSUs", "majorauditcomments.htm"))
  aux1 = insFld(foldersTree, gFld("Comments & Sugessions", "compsugg.htm"))
  aux1 = insFld(foldersTree, gFld("Contact Us", "contactus.htm"))

