//
// 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 = 0
PRESERVESTATE = 1
HIGHLIGHT = 1


//
// The following code constructs the tree.
//
foldersTree = gFld("<b>Products</b>", "products.shtml")
  aux1 = insFld(foldersTree, gFld("Automatic Gates", ""))
  	insDoc(aux1, gLnk("S", "Accessories", "gate_accessories.shtml"))
    insDoc(aux1, gLnk("S", "Commercial", "gate_commercial.shtml"))
    insDoc(aux1, gLnk("S", "Residential", "gate_residential.shtml"))
  aux1 = insFld(foldersTree, gFld("Chain Link", ""))
  	aux2 = insFld(aux1, gFld("Commercial/Industrial", ""))
    	insDoc(aux2, gLnk("S", "Barbed Top", "cl_barbed.shtml"))
    	insDoc(aux2, gLnk("S", "Galvanized", "cl_galvanized.shtml"))
    	insDoc(aux2, gLnk("S", "Slatted", "cl_slatted.shtml"))
  	aux2 = insFld(aux1, gFld("Residential", ""))
    	insDoc(aux2, gLnk("S", "Colored", "cl_colored.shtml"))
    	//insDoc(aux2, gLnk("S", "Fabric", "cl_fabric.shtml"))
    	insDoc(aux2, gLnk("S", "Galvanized", "cl_galvanized.shtml"))
    	insDoc(aux2, gLnk("S", "Pool Code", "cl_poolcode.shtml"))
    	insDoc(aux2, gLnk("S", "Slatted", "cl_slatted.shtml"))
  	aux2 = insFld(aux1, gFld("Temporary & Custom", ""))
    	insDoc(aux2, gLnk("S", "Temporary Fence", "cl_temp.shtml"))
    	insDoc(aux2, gLnk("S", "Custom", "cl_custom.shtml"))
  aux1 = insFld(foldersTree, gFld("Ornamental Iron", ""))
    insDoc(aux1, gLnk("S", "Aristocrat", "oi_aristocrat.shtml"))
    insDoc(aux1, gLnk("S", "Fortress", "oi_fortress.shtml"))
    insDoc(aux1, gLnk("S", "Regal", "oi_regal.shtml"))
    insDoc(aux1, gLnk("S", "Custom", "oi_custom.shtml"))
  aux1 = insFld(foldersTree, gFld("Vinyl Fences & Gates", ""))
    insDoc(aux1, gLnk("S", "Ornamental", "vfg_ornamental.shtml"))
    insDoc(aux1, gLnk("S", "Picket", "vfg_picket.shtml"))
    insDoc(aux1, gLnk("S", "Privacy", "vfg_privacy.shtml"))
    insDoc(aux1, gLnk("S", "Rail Systems", "vfg_rail.shtml"))
    insDoc(aux1, gLnk("S", "Arbors", "vlg_arbors.shtml"))
    insDoc(aux1, gLnk("S", "Custom", "vfg_custom.shtml"))
    insDoc(aux1, gLnk("S", "Vinyl FAQ", "vfg_faq.shtml"))
  aux1 = insFld(foldersTree, gFld("Wood", ""))
    insDoc(aux1, gLnk("S", "Alternating Board", "wood_altboard.shtml"))
    insDoc(aux1, gLnk("S", "Dog Ear", "wood_dogear.shtml"))
    insDoc(aux1, gLnk("S", "Picket", "wood_picket.shtml"))
    insDoc(aux1, gLnk("S", "Postmaster", "wood_steelposts.shtml"))
    insDoc(aux1, gLnk("S", "Shadowbox", "wood_shadowbox.shtml"))
  aux1 = insFld(foldersTree, gFld("Field Fence", "wood_fieldfence.shtml"))
  aux1 = insFld(foldersTree, gFld("Accessories & Hardware", ""))
    insDoc(aux1, gLnk("S", "Accessories", "accessories.shtml"))
    insDoc(aux1, gLnk("S", "Hardware", "hardware.shtml"))
//
// Set this string if TreeView and other configuration files may also be loaded 
// in the same session.
//
foldersTree.treeID = "FramelessHili" 
 