
var m1 = "+++ Der Jahrgang 1998 der Berufsfachschule Plattling heisst Dich herzlich Willkommen!! +++ ";
var m2 = "Auf den folgenden Seiten findest Du einige Informationen über uns. +++ ";
var Text=m1+m2;
var Geschwindigkeit = 100; 
var Breite = 100;           
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);
}

function openSite(url)
{ 
	window.open(url,'','left=10,top=10,width=520,height=650');
} 

function openSiteSize(url,pLeft,pTop,pWidth,pHeight,pStatus)
{ 
	Fenster = window.open(url,'','left='+pLeft+',top='+pTop+',width='+pWidth+',height='+pHeight+',scrollbars=yes,location=no,toolbars=no,resize=no,status='+pStatus);
	Fenster.focus();
} 
