<!--
// function einblenden()
//  {
//  document.all.KommText.filters.blendTrans.Apply();
//  document.all.KommText.style.visibility = "visible";
//  document.all.KommText.filters.blendTrans.Play();
//  }

BroW = parseInt(navigator.appVersion)
if (BroW >= 4)
  {
  Vs = true
  } else
  {
  Vs = false
  }
if (Vs == true)
  {
  Wid = screen.availWidth - 30
  Hei = screen.availHeight + 50
  Left = Math.floor((Wid - 350) / 2) ; Top = Math.floor((Hei - 100) / 2)
  if (document.layers)
     {
     document.captureEvents(Event.MOUSEDOWN)
     }
  document.onmousedown = adresse
  }

function adresse (e)
  {
  flag = false
  if (document.layers)
     {
     which = e.which ; if (which == 3)
       {
       flag = true
       }
     }
  else
      {
      which = event.button ; if (which == 2)
        {
        flag = true
        }
      }
  if (flag)
    {
     Fenster = window.open("tonstudio/adresse.htm","Adresse","width=400,height=300");
     Fenster.focus();
    self.location.href="index.htm";
    return false
    }
  }
//-->


function adressfenster()
    {
     Fenster = window.open("tonstudio/adresse.htm","Adresse","width=400,height=300");
     Fenster.focus();
    }

function impressum()
    {
     iFenster = window.open("impressum/impressum.htm","impressum","width=500, scrollbars=yes, left=100");
     iFenster.moveTo (width=100,height=0);
     iFenster.resizeTo(width=500 ,screen.height);
     iFenster.focus();
    }

<!--
  var Text = "KLANGPLANET, Bockholtstr. 102, 41460 Neuss";
  var Geschwindigkeit = 70;
  var Breite = 150;
  var TextLaenge = Text.length;
  var Position = 1 - Breite;

  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);
    }
StatusLauftext()
//-->
