<!--
  tickertext = "+++ tcc-INFOKOM - training, coaching, consulting for IT-Support +++ we support IT-Support +++";  
  geschwindigkeit = 75;  
  breite = 100;           
  pos = 1 - breite;   
  
function StatusLauftext()   
 {
   pos++;
   sichtbarerText = "";
   if (pos == tickertext.length) 
   {
    pos = 1 - breite;
   }
   if (pos < 0) 
   {
    for (i=1; i <= Math.abs(pos); i++) 
     {
      sichtbarerText += " ";
     };
    sichtbarerText += tickertext.substring(0, breite - i + 1);
   }
  else 
   {
    sichtbarerText += tickertext.substring(pos, breite + pos);
   }
  window.status = sichtbarerText;
  setTimeout("StatusLauftext()",geschwindigkeit);
 }
 
StatusLauftext();
// -->

