//
// 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 = 0

//
// 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("", "#")
  foldersTree.treeID = "Frameless"
  aux1 = insFld(foldersTree, gFld("Video Wall", "video-wall.htm"))
    aux2 = insFld(aux1, gFld("Technology", "video-tech-overview.htm"))
      //insDoc(aux2, gLnk("S", "Piyush", "demoFrameless.html?pic=%22beenthere_boston%2Ejpg%22"))
      //insDoc(aux2, gLnk("S", "Alok", "demoFrameless.html?pic=%22beenthere_newyork%2Ejpg%22"))
      //insDoc(aux2, gLnk("S", "Neeraj", "demoFrameless.html?pic=%22beenthere_washington%2Ejpg%22"))
    //aux2 = insFld(aux1, gFld("Components", "video-components.htm"))
	aux2 = insFld(aux1, gFld("Products", "product.htm"))
	aux2 = insFld(aux1, gFld("Applications", "video-applications.htm"))
	aux2 = insFld(aux1, gFld("Display Selection", "selection.htm"))
	aux2 = insFld(aux1, gFld("Delta Advantage", "video-delta.htm"))
	aux2 = insFld(aux1, gFld("Support", "support.aspx"))
	 aux1 = insFld(foldersTree, gFld("LED", "led.htm"))
    aux2 = insFld(aux1, gFld("Technology", "led-technology.htm"))
    //aux2 = insFld(aux1, gFld("Components", "led-components.htm"))
	aux2 = insFld(aux1, gFld("Applications", "led-applications.htm"))
	aux2 = insFld(aux1, gFld("Delta Advantage", "led-delta.htm"))
	aux2 = insFld(aux1, gFld("Support", "support.aspx"))
  aux1 = insFld(foldersTree, gFld("Digital Signage", "digital-signage.htm"))
    aux2 = insFld(aux1, gFld("Technology", "d-signage-technology-display.htm"))
    //aux2 = insFld(aux1, gFld("Components", "d-signage-components.htm"))
	aux2 = insFld(aux1, gFld("Applications", "d-signage-applications.htm"))
	aux2 = insFld(aux1, gFld("Delta Advantage", "d-signage-delta.htm"))
	aux2 = insFld(aux1, gFld("Support", "support.aspx"))

