//
// 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

//
// 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>Home</b>", "index.html")
  foldersTree.treeID = "Frameless"
  aux1 = insFld(foldersTree, gFld("Prevention", "prevention.html"))
   // aux2 = insFld(aux1, gFld("Lifestyle", "diet.html"))
//      insDoc(aux2, gLnk("S", "Diet", "javascript:undefined"))
//      insDoc(aux2, gLnk("S", "Excercise", "javascript:undefined"))
//      insDoc(aux2, gLnk("S", "Detox", "javascript:undefined"))
//    
  aux1 = insFld(foldersTree, gFld("Diagnosis", "diagnosis.html"))
    aux2 = insFld(aux1, gFld("Screening Tests", "screening.html"))
	aux2 = insFld(aux1, gFld("Diagnostics Tests", "tests.html"))
 aux2 = insFld(aux1, gFld("Staging", "staging.html"))
//      insDoc(aux2, gLnk("S", "Tests and Staging", "tests.html"))
    aux1 = insFld(foldersTree, gFld("Treatment Options", "treatmentoptions.html"))
 aux2 = insFld(aux1, gFld("Chemotherapy", "chemotherapy.html"))
 aux2 = insFld(aux1, gFld("Radiation", "radiation.html"))
 //aux2 = insFld(aux1, gFld("Surgical Oncology", "surgery.html"))
 //aux2 = insFld(aux1, gFld("Biologic Therapy", "biologic.html"))
 //aux2 = insFld(aux1, gFld("Bone Marrow Transplants", "bonemarrow.html"))
//aux2 = insFld(aux1, gFld("Clinical Trials", "clinicaltrial.html"))
 aux2 = insFld(aux1, gFld("Complementary Medicine", "complimentarymed.html"))
 //aux2 = insFld(aux1, gFld("Gene Therapy", "genetherapy.html"))
 /*aux2 = insFld(aux1, gFld("Hormone Therapy", "hormonetherapy.html"))
 aux2 = insFld(aux1, gFld("PDT Center", "pdtcenter.html"))
 aux2 = insFld(aux1, gFld("Proton Therapy", "protontherapy.html"))
 aux2 = insFld(aux1, gFld("Vaccine Therapies", "vaccinetherapy.html"))
 */
	  
	aux1 = insFld(foldersTree, gFld("Hospital List ", "hospital-dr-list.html"))
	 aux2 = insFld(aux1, gFld("Maharastra", "hospital-dr-list.html#maha"))

	aux1 = insFld(foldersTree, gFld("Spiritual Support", "spiritualsupport.html"))
	aux1 = insFld(foldersTree, gFld("Research", "research.html"))
	aux1 = insFld(foldersTree, gFld("Reviews", "reviews.html"))
	aux1 = insFld(foldersTree, gFld("Health & Fitness", "health.html"))
    //insDoc(aux1, gLnk("B", "Opens in new window", "http://www.treeview.net/treemenu/demopics/beenthere_pisa.jpg"))

