//
// 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
HIGHLIGHT = 1
BUILDALL = 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>  </b>", "javascript:undefined")
  foldersTree.treeID = "Frameless"
  aux1 = insDoc(foldersTree, gLnk("S", "Ana Sayfa", "index.asp"))
  aux1 = insDoc(foldersTree, gLnk("S", "Hakkımızda", "hakkimizda.asp"))
  aux1 = insFld(foldersTree, gFld("Ürünler", "javascript:undefined"))
   aux2 = insFld(aux1, gFld("Taşıt Araçları", "javascript:undefined"))
    aux3 = insFld(aux2, gFld("Treyler /kamyon /hafif ticari araç /van /otobüs taban kaplamaları", "urunler01.asp"))
      insDoc(aux3, gLnk("S", "Koskicrown", "urunler01_01.asp"))
      insDoc(aux3, gLnk("S", "Koskicarat", "urunler01_02.asp"))
      insDoc(aux3, gLnk("S", "Koskideck", "urunler01_03.asp"))
      insDoc(aux3, gLnk("S", "Autofloor", "urunler01_04.asp"))
      insDoc(aux3, gLnk("S", "Koskidiamond", "urunler01_05.asp"))
      insDoc(aux3, gLnk("S", "Koskisound", "urunler01_06.asp"))
      insDoc(aux3, gLnk("S", "Koskistandard", "urunler01_07.asp"))
      insDoc(aux3, gLnk("S", "Sveza Deck", "urunler01_08.asp"))
      insDoc(aux3, gLnk("S", "Sveza Huş-Birch", "urunler01_09.asp"))
    aux3 = insFld(aux2, gFld("Treyler /kamyon /van yan panelleri ve kapıları", "urunler02.asp"))
      insDoc(aux3, gLnk("S", "Koskicrown", "urunler02_01.asp"))
      insDoc(aux3, gLnk("S", "Koskidecor", "urunler02_02.asp"))
      insDoc(aux3, gLnk("S", "Koskiprime", "urunler02_03.asp"))
      insDoc(aux3, gLnk("S", "Koskifutura smooth", "urunler02_04.asp"))
      insDoc(aux3, gLnk("S", "Koskistandard", "urunler02_05.asp"))
      insDoc(aux3, gLnk("S", "Sveza Huş-Birch", "urunler02_06.asp"))
    aux3 = insFld(aux2, gFld("Römorklar", "urunler03.asp"))
      insDoc(aux3, gLnk("S", "Koskicrown", "urunler03_01.asp"))
      insDoc(aux3, gLnk("S", "Koskicarat", "urunler03_02.asp"))
      insDoc(aux3, gLnk("S", "Koskideck", "urunler03_03.asp"))
      insDoc(aux3, gLnk("S", "Koskiform", "urunler03_04.asp"))

   aux2 = insFld(aux1, gFld("İnşaat", "urunler04.asp"))
      insDoc(aux2, gLnk("S", "Koskiform", "urunler04_01.asp"))
      insDoc(aux2, gLnk("S", "BestForm", "urunler04_04.asp"))
      insDoc(aux2, gLnk("S", "Koskistandard", "urunler04_02.asp"))
      insDoc(aux2, gLnk("S", "Sveza Huş-Birch", "urunler04_03.asp"))

   aux2 = insFld(aux1, gFld("Mobilya", "urunler05.asp"))
      insDoc(aux2, gLnk("S", "Sveza Huş-Birch", "urunler05_01.asp"))
      insDoc(aux2, gLnk("S", "Koskistandard", "urunler05_02.asp"))
      insDoc(aux2, gLnk("S", "Koskiprime", "urunler05_03.asp"))
      insDoc(aux2, gLnk("S", "Koskidecor", "urunler05_04.asp"))
      insDoc(aux2, gLnk("S", "Koskifutura smooth", "urunler05_05.asp"))

  aux1 = insFld(foldersTree, gFld("Huş Kontrplak", "javascript:undefined"))
      insDoc(aux1, gLnk("S", "Kontrplak nedir ?", "hus01.asp"))
      insDoc(aux1, gLnk("S", "Huş kontrplak", "hus02.asp"))

  aux1 = insDoc(foldersTree, gLnk("S", "Foto Galeri", "fotogaleri.asp"))  
  aux1 = insDoc(foldersTree, gLnk("S", "Linkler", "linkler.asp"))
  aux1 = insDoc(foldersTree, gLnk("S", "İletişim", "iletisim.asp"))

