index_0 = new Image();
index_0.src = "images/index1.jpg";
index_1 = new Image();
index_1.src = "images/index2.jpg";
index_2 = new Image();
index_2.src = "graphics/kanji_weiss.png";
index_3 = new Image();
index_3.src = "graphics/kanji_rot.png";

function Bildwechsel(Bildnr, Bildobjekt)
{
  window.document.images[Bildnr].src = Bildobjekt.src;
}

function StatusLauftext()
{
  Position++;
  var Textzustand="";
  if (Position == TextLaenge)
  {
    Position = 1 - Breite;
  }
  if (Position < 0)
  {
    for (var Zaehler=1; Zaehler <= Math.abs(Position); Zaehler++)
    {
      Textzustand = Textzustand + " ";
    }
    Textzustand = Textzustand + Text.substring(0, Breite - Zaehler + 1);
  }
  else
  {
    Textzustand = Textzustand + Text.substring(Position, Breite + Position);
  }
  window.status = Textzustand;
  setTimeout("StatusLauftext()",Geschwindigkeit);
}

function Sprachwahl()
{
  lang = 'en'
  if (navigator.language)
  {
    lang = navigator.language;
  }
  if (navigator.browserLanguage)
  {
    lang = navigator.browserLanguage;
  }
  lang = lang.substring(0, 2);
  if (lang == 'de')
  {
    location.replace('html/deutsch/menue_main.htm');
  }
  else
  {
    location.replace('html/english/menu_main.htm');
  }
}

function Weiterleitung()
{
  window.setTimeout("Sprachwahl()",20000);
}

function byebyewin()
{
  windowLeaving=window.open("",'Leaving','toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,resizable=1,width=250,height=135');
windowLeaving.document.writeln("<head><title>Selfclosing Window</title><link rel='stylesheet' href='index.css' type='text/css'></head><body background='graphics/backgrounds/camera.jpg' text=black>");
windowLeaving.document.writeln('<font face="sans-serif" size="-1"><center>Andere Projekte / Other projects:</center><br>');
windowLeaving.document.writeln('<center><a href="http://www.gigabitfilm.de" target="_blank">Gigabitfilm<sup>&reg;</sup></a></center>');
windowLeaving.document.writeln('<center><a href="http://www.heilandelectronic.de" target="_blank">Heiland electronic GmbH</a></center>');
windowLeaving.document.writeln('<center><a href="http://www.oel-und-silber.de" target="_blank">picho und Anne Held</a></center></font>');
windowLeaving.setTimeout("self.close()",20000);
}