// You can find instructions for this file here:
// http://www.treeview.net

// Decide if the names are links or just the icons
USETEXTLINKS = 1  //replace 0 with 1 for hyperlinks

// Decide if the tree is to start all open or just showing the root folders
STARTALLOPEN = 1 //replace 0 with 1 to show the whole tree

ICONPATH = 'images/' //change if the gif's folder is a subfolder, for example: 'images/'


foldersTree = gFld("<i><font color=white size=+1><b>ACOSTA INFO-TEL</b></font></i>", "")
  
  // MENU INICIO
  aux1 = insFld(foldersTree, gFld("Página de inicio ", ""))
    //aux2 = insFld(aux1, gFld("United States", "http://www.treeview.net/treemenu/demopics/beenthere_america.gif"))
      insDoc(aux1, gLnk("I", "Presentacion", "presentacion.html"))
      insDoc(aux1, gLnk("I", "Localizacion", "localizacion.html"))

/*  // MENU PRESENTACION
  aux1 = insFld(foldersTree, gFld("Presentación de la Empresa ", "javascript:parent.op()"))
    aux2 = insFld(aux1, gFld("Linked", "http://www.treeview.net/treemenu/demopics/beenthere_unitedstates.gif"))
      insDoc(aux2, gLnk("R", "New York", "http://www.treeview.net/treemenu/demopics/beenthere_newyork.jpg"))
    aux2 = insFld(aux1, gFld("Empty, linked", "http://www.treeview.net/treemenu/demopics/beenthere_europe.gif"))
    //NS4 needs the href to be non-empty to process other events such as open folder,
    //hence the op function
    aux2 = insFld(aux1, gFld("Not linked", "javascript:parent.op()"))
      insDoc(aux2, gLnk("R", "New York", "http://www.treeview.net/treemenu/demopics/beenthere_newyork.jpg"))
  
  // MENU LOCALIZACION
  aux1 = insFld(foldersTree, gFld("Localización ", "javascript:parent.op()"))
      insDoc(aux1, gLnk("R", "Right frame", "http://www.treeview.net/treemenu/demopics/beenthere_edinburgh.gif"))
      insDoc(aux1, gLnk("B", "New window", "http://www.treeview.net/treemenu/demopics/beenthere_london.jpg"))
      insDoc(aux1, gLnk("T", "Whole window", "http://www.treeview.net/treemenu/demopics/beenthere_munich.jpg"))
      insDoc(aux1, gLnk("S", "This frame", "http://www.treeview.net/treemenu/demopics/beenthere_athens.jpg"))
      // The S target is required and the \\\ before the ' for string arguments are required too
      // If you define your function in the parent frame, use  javascript:parent.myfunc
      insDoc(aux1, gLnk("S", "JavaScript link", "javascript:alert(\\\'This JavaScript link simply calls the built-in alert function,\\\\nbut you can define your own function.\\\')"))
*/
  // MENU PRODUCTOS
  aux1 = insFld(foldersTree, gFld("Productos", ""))
  insDoc(aux1, gLnk("I", "Accede a nuestros productos", "productos.html"))
  
  /*
  // .....
  aux1 = insFld(foldersTree, gFld("<font color=red>F</font><font color=blue>o</font><font color=pink>r</font><font color=green>m</font><font color=red>a</font><font color=blue>t</font><font color=brown>s</font>", "javascript:parent.op()"))
    docAux = insDoc(aux1, gLnk("R", "<div class=specialClass>CSS Class</div>", "http://www.treeview.net/treemenu/demopics/beenthere_newyork.jpg"))
*/
  // MENU SERVICIOS
  aux1 = insFld(foldersTree, gFld("Servicios Vodafone", ""))
  //aux1.iconSrc = ICONPATH + "iconoLogoVodafone.gif"
  //aux1.iconSrcClosed = ICONPATH + "iconoLogoVodafone.gif"
    docAux = insDoc(aux1, gLnk("I", "Accede a Vodafone", "vodafone.htm"))
    //docAux.iconSrc = ICONPATH + "iconoLogoVodafone.gif"
    
 // MENU FORO
  aux1 = insFld(foldersTree, gFld("Foro", ""))
  insDoc(aux1, gLnk("B", "Accede al foro", "http://acosta-infotel.foro.st"))
 
 // MENU FOTOS
  aux1 = insFld(foldersTree, gFld("Fotos", ""))
  insDoc(aux1, gLnk("I", "Fotos", "fotos.html")) 


