



  
/**** Scrolltext in Statusleiste ****/
	var Text = "*** Jetzt neu Bomben auf Freiburg - Forum ***         Bitte schreiben Sie ber Ihre Eindrcke vom Film - oder von dem, wie Sie die Bombennacht erlebt haben!";
	var Geschwindigkeit = 100;
	var Breite = 100;






/* Statusleiste */
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);
}

/* "Framesetabfrage */
if (top.frameset_geladen + "" != "okay") top.location.href = "http://www.bomben-auf-freiburg.de";
