//
// 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 = 1
USEFRAMES = 0
USEICONS = 0
WRAPTEXT = 1
PRESERVESTATE = 1

//
// The following code constructs the tree.  This code produces a tree that looks like:
// 
// Tree Options
//  - Expand for example with pics and flags
//    - United States
//      - Boston
//      - Tiny pic of New York City
//      - Washington
//    - Europe
//      - London
//      - Lisbon
//  - Types of node
//    - Expandable with link
//      - London
//    - Expandable without link
//      - NYC
//    - Opens in new window
//

foldersTree = gFld("<b>Product List</b>", "")
  foldersTree.treeID = "Frameless20"    
  aux1 = insFld(foldersTree, gFld("SECURITY SERIES", ""))
    aux2 = insFld(aux1, gFld("GSM Security", ""))
     insDoc(aux2, gLnk("S", "Door Opener", "security1.htm"))
     insDoc(aux2, gLnk("S", "Swtich trigger", "security4.htm"))
     insDoc(aux2, gLnk("S", "Security  & intercom", "security3.htm"))
     insDoc(aux2, gLnk("S", "Swtich trigger 8 relay", "security6.htm"))
  aux1 = insFld(foldersTree, gFld("PAYPHONE SERIES", "payphone.htm"))
  aux1 = insFld(foldersTree, gFld("VOIP SERIES", "VOIP.htm"))
  aux1 = insFld(foldersTree, gFld("VENDING MACHINE SERIES", "wifi.htm"))
  aux1 = insFld(foldersTree, gFld("SYSTEM INTEGRATION", "system.htm"))
  aux1 = insFld(foldersTree, gFld("GPS SERIES", "gps.htm"))


