Thema="Chile";
Index=0;
Titel = new Array("Allgemein","Atacama","Marmolejo","Seengebiet","Patagonien","Pazifik");
SubIndex=0;
SubTitel = new Array("Reiseroute","Inhaltsverzeichnis","Literatur","Hilfe","Salar de Atacama","Cordillera de Sal","El Tatio","Lamas","Refugio Aleman","Cerro Cortaderas","Glaciar Marmolejo","Lago Conguillo","Vulcan Osorno","Araukarien","Punta Arenas","Torres del Paine","Perito Moreno","El Chalten","Piguinero","Guanacos","Pablo Neruda","¡Adiós!");
Dateien = new Array("index.html","inhalt.html","literatur.html","ayuda.html","atacama.html","luna.html","tatio.html","lamas.html","anden.html","cerro.html","marmolejo.html","lagos.html","osorno.html","conguillio.html","patagonien.html","cuernos.html","wir.html","chalten.html","pinguin.html","guanaco.html","neruda.html","pacifico.html");
Pages = new Array(4,4,3,3,6,2);
Chapter = new Array(0,Pages[0],Pages[0]+Pages[1],Pages[0]+Pages[1]+Pages[2],Pages[0]+Pages[1]+Pages[2]+Pages[3],Pages[0]+Pages[1]+Pages[2]+Pages[3]+Pages[4],Pages[0]+Pages[1]+Pages[2]+Pages[3]+Pages[4]+Pages[5]);

window.document.writeln('<title>Bringezu\'s Website</title>');
window.document.writeln('<style>');
window.document.writeln('body{background-color: #FFFFFF}');
window.document.writeln('h1{color: #ED3D51}');
window.document.writeln('h2{color: #004190}');
window.document.writeln('h3{color: #004190}');
window.document.writeln('h4{color: #004190}');
window.document.writeln('h5{color: #004190}');
window.document.writeln('h6{color: #004190}');
window.document.writeln('ul {color: #004190; list-style-type: square }');
window.document.writeln('a:link { color: #004190; font-weight: bold}');
window.document.writeln('a:visited { color: #004190; font-weight: bold}');
window.document.writeln('a:active { color: #ED3D51; font-weight: bold }');
window.document.writeln('strong {color: #ED3D51}');
window.document.writeln('</style>');

function Navigator(Flags)
{
 window.document.writeln('<form><table cellspacing=0 cellpadding=1 border=0 width=100% bgcolor=#cccccc><tr><td>');
 if ((Flags&1)==1)
  {
   window.document.writeln('&nbsp;Kapitel:&nbsp;<select onChange=location.replace(Dateien[Chapter[options[selectedIndex].value]])>');
   for(i = 0; i <= Titel.length-1; i++)
    {
     window.document.write('<option value=',i);
     if (i==Index)
      window.document.write(' selected');
     window.document.writeln('>',Titel[i]);
    }
   window.document.writeln('</select>');
  }
 if ((Flags&2)==2)
  {
   window.document.writeln('&nbsp;<input type=button value="&nbsp;«&nbsp;" onClick=GotoChapter(Index-1)>');
   window.document.writeln('&nbsp;<input type=button value="&nbsp;»&nbsp;" onClick=GotoChapter(Index+1)>');
  }
 if ((Flags&4)==4)
  {
   window.document.writeln('&nbsp;Seite:&nbsp;<select onChange=location.replace(Dateien[options[selectedIndex].value])>');
   for(i = Chapter[Index]; i <= Chapter[Index+1]-1; i++)
   {
    window.document.write('<option value=',i);
    if (i==SubIndex){window.document.write(' selected')
   };
  window.document.writeln('>',SubTitel[i]);
  }
  window.document.writeln('</select>');
 }
 if ((Flags&8)==8)
  {
   window.document.writeln('&nbsp;<input type=button value="&nbsp;<&nbsp;" onClick=GotoPage(SubIndex-1)>');
   window.document.writeln('&nbsp;<input type=button value="&nbsp;>&nbsp;" onClick=GotoPage(SubIndex+1)>');
  }
 if ((Flags&16)==16)
  {
   window.document.writeln('&nbsp;Navigation:');
   window.document.writeln('&nbsp;<input type=button value="&nbsp;<&nbsp;" onClick=GotoPage(SubIndex-1)>');
   window.document.writeln('&nbsp;<input type=button value="&nbsp;ô&nbsp;" onClick=location.href="http://www.bringezu.de">');
   window.document.writeln('&nbsp;<input type=button value="&nbsp;^&nbsp;" onClick=location.href="#top">');
   window.document.writeln('&nbsp;<input type=button value="&nbsp;i&nbsp;" onClick=GotoPage(1)>');
   window.document.writeln('&nbsp;<input type=button value="&nbsp;?&nbsp;" onClick=GotoPage(3)>');
   window.document.writeln('&nbsp;<input type=button value="&nbsp;>&nbsp;" onClick=GotoPage(SubIndex+1)>');
  }
 window.document.writeln('</tr></table></form>');
};

function GotoChapter(AIndex)
{
 if ((AIndex>=0)&(AIndex<Titel.length))
  document.location.replace(Dateien[Chapter[AIndex]])
 else 
  alert("Das erste oder letzte Kapitel der Website ist erreicht!");
};

function GotoPage(ASubIndex)
{
 if ((ASubIndex>=0)&(ASubIndex<SubTitel.length))
  document.location.replace(Dateien[ASubIndex])
 else 
  alert("Die erste oder letzte Seite der Website ist erreicht!");
};

function StartPage(AIndex, ASubIndex, ABild)
{
 Index=AIndex;
 SubIndex=ASubIndex+Chapter[AIndex];
 Navigator(15);
 window.document.writeln('<h2>Chile - Reiseimpressionen</h2><table><tr valign=top><td valign=top>');
 if (ABild.length>0)
  window.document.writeln('<img src=',ABild,' align=left hspace=10 vspace=10>');
};

function EndPage()
{
 window.document.writeln('</table><p>');
 Navigator(21);
 window.document.writeln('<p><address>&copy; 2000 <a href=mailto:kristina@bringezu.de>Kristina Bringezu</a> und <a href=mailto:dirk@bringezu.de>Dirk Bringezu</a></address>');
};
