<!--
a=0; b=0; c=""; d=0; e=2;

function ticker() {
d=0;
c="";
for (i=0; i<anzahl-a; i++) {
c=c+"&nbsp;<br>";}
for (i=0; i<a; i++) {
c=c+styl1[i]+msg[i]+styl2[i]+"<br>";}
c=c+styl1[a]+msg[a].substring(0,b+1)+styl2[a];
f(c);
b++;
if (b>msg[a].length) {
 b=0;
 a++; }
if (a==anzahl) {
 a=0;
 d=1;
 g=setTimeout("h();",250);
 }
if (d==0) g=setTimeout("ticker()",50);
}

function h() {
c="";
for (j=d; j<anzahl; j++) {
 c=c+styl1[j]+msg[j]+styl2[j]+"<br>";
 }
for (j=0; j<d; j++) {
c=c+"<br>"; }
f(c);
if (d < anzahl) {
 d++;
 g1=setTimeout("h()",100);}
else { 
d=0;
l();
 g1=setTimeout("ticker();",2200);}	
}

function l() {
for (i=0; i<anzahl; i++) {
msg[i]=msg[i+anzahl*e];
styl1[i]=styl1[i+anzahl*e];
styl2[i]=styl2[i+anzahl*e];}
e++;
if (e==anzmess+1) e=1;
}


function f(m)
{

 if(document.all)
   document.all.MicrosoftText.innerHTML = m;
 else if(document.layers)
  {
   document.NetscapeText.document.open();
   m = '<span class="Text")>' + m + '</span>';
   document.NetscapeText.document.write(m);
   document.NetscapeText.document.close();
  }
}
// (c) by Guido Schollerer 1999    

//-->

