//
// 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", "default.asp"))
  aux1 = insDoc(foldersTree, gLnk("S", "Firma Profili", "hakkimizda.asp"))
  aux1 = insFld(foldersTree, gFld("Ürünler", "javascript:undefined"))
  	
	aux2 = insFld(aux1, gFld("Teller", "javascript:undefined"))
    	aux3 = insFld(aux2, gFld("Panel Çit", "panel-cit-urunleri.asp"))
		aux3 = insFld(aux2, gFld("Dikenli Tel", "dikenli-tel-urunleri.asp"))
		aux3 = insFld(aux2, gFld("Jiletli Tel", "jiletli-tel-urunleri.asp"))
		aux3 = insFld(aux2, gFld("Kafes Tel", "kafes-tel-urunleri.asp"))
		
  	
	aux2 = insFld(aux1, gFld("Direkler", "javascript:undefined"))
      	insDoc(aux2, gLnk("S", "Beton Direk", "beton-direk-urunleri.asp"))
      	insDoc(aux2, gLnk("S", "Boru Direk", "boru-direk-urunleri.asp"))
      	insDoc(aux2, gLnk("S", "Profil Direk", "profil-direk-urunleri.asp"))
      	insDoc(aux2, gLnk("S", "Köşe Bent", "kosebent-direk-urunleri.asp"))

   	aux2 = insFld(aux1, gFld("Bağlantı elemanları", "aksesuarlar.asp"))     
	
aux1 = insFld(foldersTree, gFld("Uygulamalar", "javascript:undefined"))
 	insDoc(aux1, gLnk("S", "Beton Direk ", "beton-direkli-uygulama.asp"))
    insDoc(aux1, gLnk("S", "Boru Direk ", "boru-direkli-uygulama.asp"))
	insDoc(aux1, gLnk("S", "Panel Çit ", "panel-cit-uygulama.asp"))
	insDoc(aux1, gLnk("S", "Pano Çit ", "pano-cit-uygulama.asp"))
    insDoc(aux1, gLnk("S", "Jiletli Tel ", "jiletli-tel-uygulama.asp"))
	insDoc(aux1, gLnk("S", "Klempli Çit", "klempli-cit-uygulama.asp"))
	
   aux1 = insDoc(foldersTree, gLnk("S", "İletişim", "iletisim2.asp"))
  


