iconWidth = 21;
rootWidth = 25;

function Init()
{
  BuildTree();
  PaintTree();
}

function PaintTree()
{
  var TreeFrame = self.frames["TreeFrame"];
  output = TreeFrame.window.document;
  output.open("text/html");
  output.write("<HTML>\n<HEAD>\n");
  //BGCOLOR=\"#5998FF\" #414233 A {color: #3163FF}\n
  output.write("<style type=text/css>");
  //output.write("<STYLE>\n<!--\nA:hover {color: " + aLinkColor + "}\n-->\n</STYLE>\n");
  output.write("a:link { text-decoration:none; }");
  output.write("a:hover { text-decoration:none; }");
  output.write("a:active { text-decoration:underline; }");
  output.write("a:visited  { text-decoration:none; }");

  //output.write("body");
  //output.write("{");
  //output.write("   cursor:url(body.cur);");
  //output.write("}");
  //output.write("#links");
  //output.write("{");
  //output.write("   cursor:url(links.cur);");
  //output.write("}");
  output.write("</style>");
  output.write("</HEAD>\n<BODY BGCOLOR=\"#62A3F4\" LINK=\"" + LinkColor + "\" ALINK=\"" + aLinkColor + "\" VLINK=\"" + vLinkColor + "\">\n");

  output.write("<FONT FACE=\"Verdana,Tahoma,MS Sans Serif,Arial,Helvetica\" SIZE=2 COLOR=\"BLACK\">\n");
  output.write("<span style=font-size:0.9em>");
  output.write("<NOBR>\n");
  if (TreeData[1].ziel == "")
  {
    var DestFrame = "TextFrame";
  }
  else
  {
    var DestFrame = TreeData[1].ziel
  }
  if (TreeData[1].icon == "")
  {
    var image = DataFolder + "category_expanded.gif"
  }
  else
  {
    image = DataFolder + TreeData[1].icon
  }

  output.write("<A style=\"cursor:url(links.cur);\" HREF=\"" + TreeData[1].url + "\" TARGET=\"" + DestFrame + "\" id=\"links\"" +
         " id=\"links\" onMouseOv=\"window.status='" + TreeData[1].rootstat + "'; return true\"><IMG SRC=\"" + image + "\" WIDTH=" +
         rootWidth + " HEIGHT=16 ALIGN=TOP BORDER=0 AL=\"" + TreeData[1].rootstat + "\"></A>");
  output.write("&nbsp;");
  output.write("<A style=\"cursor:url(links.cur);\" HREF=\"" + TreeData[1].url + "\" TARGET=\"" + DestFrame + "\" id=\"links\"" +
         " id=\"links\" onMouseOv=\"window.status='" + TreeData[1].rootstat + "'; return true\"><B>" + TreeData[1].text + "</B></A><BR>\n");
  PaintCategory("0","");

  var posButton;
  if( document.all )
      posButton = TreeFrame.document.body.clientHeight - 20;
  else
      posButton = TreeFrame.window.innerHeight - 20;
  output.write("<span id=restore style=\"position: absolute; left: 2; top: " + posButton +
                                                     "; display: "+ parent.restoreButtonDisplay + "\">");
  output.write("<a href=\"javascript:parent.restoreTabs()\"><img src=\"Restore.png\" border=\"0\"></a></span>");

  output.write("</NOBR>\n");
  output.write("</BODY>\n</HTML>");
  output.close();

  //window.status="Webseite der Luftgewehr- & Luftpistolenschützen Bern."
}

function PaintCategory(startEintrag, zweigEintrag)
{
  VerzAuf = 'Kategorie erweitern'
  VerzZu  = 'Kategorie reduzieren'

  var next = new Collection();
  var nIndex = 1;

  while (nIndex<=TreeData.size)
  {
    if ((TreeData[nIndex].Type == "category") || (TreeData[nIndex].Type == "entry"))
      if (TreeData[nIndex].Prev == startEintrag)
        next.Add(TreeData[nIndex]);
    nIndex++;
  }

  nIndex = 1;

  while (nIndex <= next.size)
  {
    output.write(zweigEintrag);

    if (next[nIndex].Type == "entry")
    {
      if (next[nIndex].icon == "")
        var bildBezeichnung = DataFolder + "entry.gif"
      else
        var bildBezeichnung = DataFolder + next[nIndex].icon

      if (next[nIndex].ziel == "")
        var DestFrame = "TextFrame"
      else
        var DestFrame = next[nIndex].ziel

      if (nIndex != next.size)
        output.write("<IMG SRC=\"" + DataFolder + "branch.gif\" WIDTH=19 HEIGHT=16 ALIGN=TOP>")
      else
        output.write("<IMG SRC=\"" + DataFolder + "branch_last.gif\" WIDTH=19 HEIGHT=16 ALIGN=TOP>")

      if (next[nIndex].linkstat == "")
        var linkstat = next[nIndex].url
      else
        var linkstat = next[nIndex].linkstat

      //File-Icon-Grösse: (ursprüngl.:16x16)
      output.write("<A style=\"cursor:url(links.cur);\" HREF=\"" + next[nIndex].url + "\" TARGET=\"" + DestFrame +
             "\" id=\"links\"" +  " id=\"links\" onMouseOv=\"window.status='" + linkstat + "'; return true\"><IMG SRC=\"" +
             bildBezeichnung + "\" WIDTH=" + iconWidth + " HEIGHT=16 ALIGN=TOP BORDER=0 AL=\"" + linkstat + "\"></A>")
      output.write("&nbsp;")
      output.write("<A style=\"cursor:url(links.cur);\" HREF=\"" + next[nIndex].url + "\" TARGET=\"" + DestFrame +
             "\" id=\"links\"" +  " id=\"links\" onMouseOv=\"window.status='" + linkstat + "'; return true\">"
             + next[nIndex].text + "</A><BR>\n")
    }
    else //category
    {
      var neuerZweig = zweigEintrag;

      if (next[nIndex].iconZu == "")
        var iconZu = "category_collapsed.gif"
      else
        var iconZu = next[nIndex].iconZu

      if (next[nIndex].iconOffen == "")
        var iconOffen = "category_expanded.gif"
      else
        var iconOffen = next[nIndex].iconOffen

       if (next[nIndex].linkstat == "")
        var linkstat = next[nIndex].url
      else
        var linkstat = next[nIndex].linkstat

      if (nIndex!=next.size)
        if (next[nIndex].offen == 0)
        {
          if(nIndex == 1 && linkstat == "Luftgewehr-Sektion")
          {
             output.write("<A style=\"cursor:url( links.cur );\" HREF=\"javascript:parent.ExpandCollapse('" + next[nIndex].name +
                 "',1)\" id=\"links\" onMouseOv=\"window.status='" + linkstat + "'; return true\"><IMG SRC=\"" + DataFolder +
                 "luftgewehrSmall.gif\" WIDTH=55 HEIGHT=16 AL=\"" + linkstat + "\" ALIGN=TOP BORDER=0>");
          }
          else
          {
             output.write("<A style=\"cursor:url( links.cur );\" HREF=\"javascript:parent.ExpandCollapse('" + next[nIndex].name +
                 "',1)\" id=\"links\" onMouseOv=\"window.status='" + linkstat + "'; return true\"><IMG SRC=\"" + DataFolder +
                 "plus.gif\" WIDTH=19 HEIGHT=16 AL=\"" + linkstat + "\" ALIGN=TOP BORDER=0>")
             output.write("<IMG style=\"cursor:url(links.cur);\" SRC=\"" + DataFolder + iconZu + "\" WIDTH=" + iconWidth +
                 " HEIGHT=16 AL=\"" + linkstat + "\" ALIGN=TOP BORDER=0></A>");
          }
          output.write("&nbsp;");
          output.write("<A style=\"cursor:url(links.cur);\" HREF=\"javascript:parent.ExpandCollapse('" + next[nIndex].name +
                 "',1)\" id=\"links\" onMouseOv=\"window.status='" + linkstat + "'; return true\">")
          output.write(next[nIndex].text + "</A><BR>\n")
        }
        else
        {
          if(nIndex == 1 && linkstat == "Luftgewehr-Sektion")
          {
             output.write("<A style=\"cursor:url( links.cur );\" HREF=\"javascript:parent.ExpandCollapse('" + next[nIndex].name +
                    "',0)\" id=\"links\" onMouseOv=\"window.status='" + VerzZu + "'; return true\"><IMG SRC=\"" + DataFolder +
                    "luftgewehrSmall.gif\" WIDTH=55 HEIGHT=16 AL=\"" + VerzZu + "\" ALIGN=TOP BORDER=0>");
          }
          else
          {
             output.write("<A style=\"cursor:url( links.cur );\" HREF=\"javascript:parent.ExpandCollapse('" + next[nIndex].name +
                    "',0)\" id=\"links\" onMouseOv=\"window.status='" + VerzZu + "'; return true\"><IMG SRC=\"" + DataFolder +
                    "minus.gif\" WIDTH=19 HEIGHT=16 AL=\"" + VerzZu + "\" ALIGN=TOP BORDER=0>");
             output.write("<IMG style=\"cursor:url(links.cur);\" SRC=\"" + DataFolder + iconOffen + "\" WIDTH=" + iconWidth +
                    " HEIGHT=16 AL=\"" + VerzZu + "\" ALIGN=TOP BORDER=0></A>");
          }
          output.write("&nbsp;");
          output.write("<A style=\"cursor:url(links.cur);\" HREF=\"javascript:parent.ExpandCollapse('" + next[nIndex].name +
                 "',0)\" id=\"links\" onMouseOv=\"window.status='" + VerzZu + "'; return true\">");
          output.write(next[nIndex].text + "</A><BR>\n");
          neuerZweig = neuerZweig + "<IMG SRC=\"" + DataFolder + "line.gif\" WIDTH=19 HEIGHT=16 ALIGN=TOP>";
          PaintCategory(next[nIndex].name, neuerZweig)
        }
      else
        if (next[nIndex].offen == 0)
        {
          output.write("<A style=\"cursor:url( links.cur );\" HREF=\"javascript:parent.ExpandCollapse('" + next[nIndex].name +
                 "',1)\" id=\"links\" onMouseOv=\"window.status='" + linkstat + "'; return true\">");
          output.write("<IMG SRC=\"" + DataFolder + "plus_last.gif\" WIDTH=19 HEIGHT=16 AL=\"" + linkstat + "\" ALIGN=TOP BORDER=0>")
          output.write("<IMG style=\"cursor:url(links.cur);\" SRC=\"" + DataFolder + iconZu + "\" WIDTH=" + iconWidth +
                 " HEIGHT=16 AL=\"" + linkstat + "\" ALIGN=TOP BORDER=0></A>");
          output.write("&nbsp;");
          output.write("<A style=\"cursor:url(links.cur);\" HREF=\"javascript:parent.ExpandCollapse('" + next[nIndex].name +
                 "',1)\" id=\"links\" onMouseOv=\"window.status='" + linkstat + "'; return true\">");
          output.write(next[nIndex].text + "<BR></A>\n")
        }
        else
        {
          output.write("<A style=\"cursor:url( links.cur );\" HREF=\"javascript:parent.ExpandCollapse('" + next[nIndex].name +
                 "',0)\" id=\"links\" onMouseOv=\"window.status='" + VerzZu + "'; return true\">");
          output.write("<IMG SRC=\"" + DataFolder + "minus_last.gif\" WIDTH=19 HEIGHT=16 AL=\"" + VerzZu + "\" ALIGN=TOP BORDER=0>");
          output.write("<IMG style=\"cursor:url(links.cur);\" SRC=\"" + DataFolder + iconOffen + "\" WIDTH=" + iconWidth +
                 " HEIGHT=16 AL=\"" + VerzZu + "\" ALIGN=TOP BORDER=0></A>");
          output.write("&nbsp;");
          output.write("<A style=\"cursor:url(links.cur);\" HREF=\"javascript:parent.ExpandCollapse('" + next[nIndex].name +
                 "',0)\" id=\"links\" onMouseOv=\"window.status='" + VerzZu + "'; return true\">");
          output.write(next[nIndex].text + "</A><BR>\n");
          neuerZweig = neuerZweig + "<IMG SRC=\"" + DataFolder + "space.gif\" WIDTH=19 HEIGHT=16 ALIGN=TOP>";
          PaintCategory(next[nIndex].name,neuerZweig)
        }
    }

    nIndex++;
  }
}

function Repaint()
{
  PaintTree();
}

function ExpandCollapse(name, status)
{
  var nIndex = 1;
  while (nIndex<=TreeData.size)
  {
    if ((TreeData[nIndex].Type == "root") || (TreeData[nIndex].Type == "category"))
      if (TreeData[nIndex].name == name)
        break;
    nIndex++;
  }

  TreeData[nIndex].offen = status;
  timeOutname = setTimeout("PaintTree()", 100);
  if ((status==1) && (TreeData[nIndex].url != ''))
    frames["TextFrame"].location.href=TreeData[nIndex].url
}

function Collection()
{
  this.size = 0;
  this.Add  = Add;
  return this;
}

function Add(object)
{
  this[++this.size] = object;
}

function Root(name, text, url, rootstat)
{
  this.name	= name;
  this.text	= text;
  this.url	= url;
  this.ziel	= "";
  this.icon	= "root.gif"; //""
  this.Type	= "root";
  this.rootstat	= rootstat;
  return this;
}

function Category(name, Prev, text, iconZu, iconOffen, url, linkstat)
{
  this.name	 = name;
  this.Prev	 = Prev;
  this.text	 = text;
  this.iconZu	 = iconZu;
  this.iconOffen = iconOffen;
  this.Type	 = "category";
  this.offen	 = 0;
  this.url	 = url;
   this.linkstat = linkstat;
  return this;
}

function Entry(Prev, text, url, ziel, icon, linkstat)
{
  this.Prev	= Prev;
  this.text	= text;
  this.url	= url;
  this.ziel	= ziel;
  this.icon	= icon;
  this.Type	= "entry";
  this.linkstat	= linkstat;
  return this;
}

function BuildTree()
{
  LinkColor  = "#0941DE";  //"#1847E6";//"#002CCE";//"#3163FF";//"#000080";
  aLinkColor = "#0018CE";  //=hover
  vLinkColor = "#0941DE";  //"#1847E6";//"#3163FF";//"#000080";

  DataFolder = "tree/";
  TreeData = new Collection();
  TreeData.Add(new Root("0", "<B>Willkommensseite</B>", "main.html", "LGLP-Schützen Willkommensseite"));

  TreeData.Add(new Category("1", "0", "<B>Luftgewehr</B>", "luftgewehrSmall.gif", "luftgewehrSmall.gif", '' , "Luftgewehr-Sektion"));
       TreeData.Add(new Entry("1", "Programm", "data/gewehr/Jahresprogramm2009-2010-II.html", "", "luftgewehrSmall.gif", "Gewehr-Programm"));
       TreeData.Add(new Entry("1", "Resultate", "data/gewehr/LGResultate.html", "", "luftgewehrSmall.gif", "Gewehr-Resultate"));

  TreeData.Add(new Category("2", "0", "<B>&nbsp;&nbsp;Luftpistole</B>", "", "",  '' , "Luftpistolen-Sektion"));
       TreeData.Add(new Entry("2", "Programm", "data/pistole/Jahresprogramm.html", "", "pistolEntry.gif", "Pistolen-Programm"));
       TreeData.Add(new Entry("2", "Resultate", "data/pistole/LPResultate.html", "", "pistolEntry.gif", "Pistolen-Resultate"));

  TreeData.Add(new Category("3", "0", "<B>&nbsp;&nbsp;AIPSC</B>", "airsoftgun.gif", "airsoftgun.gif", 'data/Aipsc.html' , "Airsoft-Sektion"));
       TreeData.Add(new Entry("3", "Hauptseite", "data/Aipsc.html", "", "airsoftgun.gif", "AIPSC-Hauptseite"));
       TreeData.Add(new Entry("3", "Adresse", "data/aipsc/Adresse.html", "", "airsoftgun.gif", "Adresse"));
       TreeData.Add(new Entry("3", "Anmelde-Formular", "data/aipsc/Anmelde-Formular.html", "", "airsoftgun.gif", "Anmelde-Formular"));
       TreeData.Add(new Entry("3", "Trainings-Daten", "data/aipsc/Trainingsdaten.html", "", "airsoftgun.gif", "Trainingsdaten"));
       TreeData.Add(new Entry("3", "Links", "data/AipscLinks.html", "", "airsoftgun.gif", "AIPSC-Links"));

  TreeData.Add(new Entry("0", "<b>Sponsoren</b>", "data/sponsoren.html", "", "links.png", "Sponsoren zeigen"));

  TreeData.Add(new Category("4", "0", "<B>Verein</B>", "miscCat.gif", "miscCat.gif",  '' , "Verein"));

       TreeData.Add(new Category("5", "4", "Adressen", "miscCat.gif", "miscCat.gif",  '' , "Adressen der Vereinsmitglieder"));
            TreeData.Add(new Entry("5", "Sch&uuml;tzenhaus (Google-Maps)", "http://maps.google.com/?ie=UTF8&ll=46.956326,7.496152&spn=0.003918,0.012124&t=h&z=17&om=1", "_blank", "", "Schützenhaus"));
            TreeData.Add(new Entry("5", "Vorstandsliste", "data/adressen/LGLPBernVorstand0304.html", "", "", "Vorstandsliste"));
            TreeData.Add(new Entry("5", "Vereinsinternas", "nurMitglieder/", "", "", "Passwort bitte beim Webmaster verlangen."));
            TreeData.Add(new Entry("5", "Webmaster", "data/adressen/webmaster.html", "", "", "Webmaster"));

       TreeData.Add(new Category("6", "4", "Statuten & Regl.", "miscCat.gif", "miscCat.gif",  '' , "Statuten und Reglemente"));
            TreeData.Add(new Entry("6", "Protokoll HV 2008", "data/admin/Protokoll%20HV%2048%20vom%2026.%2009.2008.pdf", "", "", "Protokoll HV 2008"));
            TreeData.Add(new Entry("6", "Protokoll HV 2007", "data/admin/Protokoll HV 2007.pdf", "", "", "Protokoll HV 2007"));
            TreeData.Add(new Entry("6", "Schiessreglemente", "data/admin/LGLPBernSchiessreglemente.html", "", "", "Schiessreglemente"));
            TreeData.Add(new Entry("6", "Statuten 30.10.2008", "data/admin/StatutenLgLp2008.pdf", "", "", "Statuten"));

       TreeData.Add(new Category("7", "4", "Vereinsgeschichte", "miscCat.gif", "miscCat.gif",  '' , "Vereinsgeschichte"));
            //TreeData.Add(new Entry("7", "40 Jahre Pistolenschützen", "data/vereinsgeschichte/kommt_noch.html", "", "", "40 Jahre Pistolenschützen"));
            TreeData.Add(new Entry("7", "Zeitungsausschnitt", "data/vereinsgeschichte/Zeitungsausschnitt.jpg", "", "", "Zeitungsausschnitt"));
            TreeData.Add(new Entry("7", "40 Jahre Partnerschaft", "data/40J/40%20Jahre%20Partnerschaft.html", "", "", "40 Jahre Partnerschaft"));
            TreeData.Add(new Entry("7", "Schriftart f&uuml;r <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;obigen Text", "data/40J/ALBR55W.TTF", "", "", "Schriftart für obiges Dokument"));
            TreeData.Add(new Entry("7", "Das Goldene Buch", "http://www.students.unibe.ch/user/marcmooser/GoldenesBuch.html", "", "", "Das Goldene Buch"));
            TreeData.Add(new Entry("7", "Diverses", "data/vereinsgeschichte/diverses.html", "", "", "Diverses"));

  //TreeData.Add(new Category("9", "0", "<B>Bilder & Fotos</B>", "miscCat.gif", "miscCat.gif",  '' , "Bilder und Fotos"));
       //TreeData.Add(new Entry("9", "Mount St. Helens", "StHelens.html", "", "bild.gif", "Eintrag zeigen"));
       //TreeData.Add(new Entry("9", "Webcams", "data/bilder-links/kameras/WebcamsFrames.html", "", "", "Webcams on LGLPBern.ch"));

  TreeData.Add(new Entry("0", "<b>News</b>", "data/news.html", "", "news.gif", "Eintrag zeigen"));
  TreeData.Add(new Entry("0", "<b>Forum</b>", "http://www.yasp.ch/gb.asp?user=marcmooser", "", "Forum.gif", "Eintrag zeigen"));
  TreeData.Add(new Entry("0", "<b>Kontakt</b>", "data/Kontakt.html", "", "infoSign.png", "Eintrag zeigen"));
  TreeData.Add(new Entry("0", "<b>Fotos</b>", "data/bilder-links/bilder.html", "", "bild3.gif", "Bilder und Fotos"));
  TreeData.Add(new Category("10", "0", "<B>Schiesssport-Links</B>", "links.png", "links.png",  'data/bilder-links/SchiessenLinks.html' , "Links"));
       TreeData.Add(new Entry("10", "Schiessport", "data/bilder-links/SchiessenLinks.html", "", "links.png", "Eintrag zeigen"));
       TreeData.Add(new Entry("10", "Sch&uuml;tzen-Events", "http://www.schuetzenportal.ch/_portal/03_ListEvents.asp?L=D", "", "links.png", "Eintrag zeigen"));
  //TreeData.Add(new Entry("0", "-------------------", "", "", "space.gif", "Seperator"));
  TreeData.Add(new Category("12", "0", "Infos und Wetter", "info.png", "info.png",  '' , "Infos und Wetter"));
       //Portale|Karten|<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Wetter|Verkehr
       TreeData.Add(new Entry("12", "Info-Seiten", "data/bilder-links/PortaleKartenWetterVerkehr.html", "", "infoSign.png", "Eintrag zeigen"));
       TreeData.Add(new Entry("12", "Suchmaschinen", "data/bilder-links/suchmaschinen.html", "", "infoSign.png", "Eintrag zeigen"));
       TreeData.Add(new Entry("12", "Wetter-Seite", "/Wetter/Wetter.html", "", "info.png", "Eintrag zeigen"));
       TreeData.Add(new Entry("12", "WeatherGadgets", "WeatherGadgets.html", "", "info.png", "Eintrag zeigen"));
       TreeData.Add(new Entry("12", "Meteo-Alarm", "http://www.meteoalarm.eu/default.asp?lang=EN", "", "info.png", "Eintrag zeigen"));
       TreeData.Add(new Entry("12", "Presse-Liste", "http://www.webdopresse.ch/liste_titre.asp?pays=295&area=39&nav=francais&nompays=Suisse&cont=europe&nomregion=Suisse%2Bal%E9manique&nomcont=Europe", "", "infoSign.png", "Eintrag zeigen"));
       TreeData.Add(new Entry("12", "Ski-Reports", "http://wispo.myswitzerland.com/requests/MySwitzerlandSearchRequest.jsp", "", "info.png", "Eintrag zeigen"));
  TreeData.Add(new Entry("0", "Humor & Vermischtes", 'data/bilder-links/Vermischtes.html', "", "Smilie.png", "Humor & Vermischtes"));
  TreeData.Add(new Category("14", "0", "Webcams", "webcam.png", "webcam.png",  "webcams/WebfotoshowLive.html" , "Webcams"));
       TreeData.Add(new Category("15", "14", "Liste", "webcam.png", "webcam.png",  "" , "Liste"));
            TreeData.Add(new Entry("15", "Thunersee", "data/bilder-links/kameras/Webcams.html#THUNERSEE", "", "bild.gif", "Eintrag zeigen"));
            TreeData.Add(new Entry("15", "Niesen", "data/bilder-links/kameras/Webcams.html#Niesen", "", "bild.gif", "Eintrag zeigen"));
            TreeData.Add(new Entry("15", "Rothorn", "data/bilder-links/kameras/Webcams.html#Rothorn", "", "bild.gif", "Eintrag zeigen"));
            TreeData.Add(new Entry("15", "Flughafen", "data/bilder-links/kameras/Webcams.html#Flughafen", "", "bild.gif", "Eintrag zeigen"));
            TreeData.Add(new Entry("15", "Weissenstein", "data/bilder-links/kameras/Webcams.html#Weissenstein", "", "bild.gif", "Eintrag zeigen"));
            TreeData.Add(new Entry("15", "Gurten-Restaurant", "data/bilder-links/kameras/Webcams.html#Gurten-Restaurant", "", "bild.gif", "Eintrag zeigen"));
            TreeData.Add(new Entry("15", "Gurten-Aussicht", "data/bilder-links/kameras/Webcams.html#Gurten-Aussicht", "", "bild.gif", "Eintrag zeigen"));
            TreeData.Add(new Entry("15", "Rigi", "data/bilder-links/kameras/Webcams.html#Rigi", "", "bild.gif", "Eintrag zeigen"));
  TreeData.Add(new Category("16", "0", "Suche, Fav, Einstell.", "tools.png", "tools.png",  '' , "Suche, Fav, Einstell."));
       TreeData.Add(new Entry("16", "Suche", "data/googleSuche.html", "", "search.gif", "Eintrag zeigen"));
       TreeData.Add(new Entry("16", "Link here (Favorit)", "javascript:parent.favorit()", "", "fav.gif", "Eintrag zeigen"));
       TreeData.Add(new Entry("16", "Einstellungen", "einstellungen.html", "", "Einstellungen2.png", "Eintrag zeigen"));
       TreeData.Add(new Entry("16", "gvisit.com", "http://www.gvisit.com/map.php?sid=e1244d1112a2b938af3d72841003011d", "", "links.png", "Eintrag zeigen"));
       TreeData.Add(new Entry("16", "geo visitors", "http://www.digitalpoint.com/tools/geovisitors/", "", "links.png", "Eintrag zeigen"));
}
