var ScrollText = "+++ Diese Seite wird zur Zeit entworfen. Ich bitte um Ihr Verständnis. Schauen Sie bitte das nächste mal wieder vorbei. +++ Sorry, site currently under construction. Hope I will see you again next time. +++";
var DisplayText_StartIndex = -1;
var DisplayText = " ";
var FormatedText = " ";
var FillText = 60;

function text_scroll()
{
var Leerzeichen = " ";
var ix = 0;
  if (DisplayText_StartIndex < 0)
   {
 
   if (navigator.appName == "Microsoft Internet Explorer")
    {
    FillText += 40;
    };

   for (ix = 0; ix < FillText; ix++)
     {
     Leerzeichen += " ";
     FormatedText = Leerzeichen + ScrollText;
     };
   DisplayText_StartIndex = 0;
   };

  if (DisplayText_StartIndex > FormatedText.length)
   {
   DisplayText_StartIndex = 0;
   };
DisplayText = FormatedText.substr(DisplayText_StartIndex,FillText)
document.ScrollForm.ScrollBar.value = DisplayText;
DisplayText_StartIndex++;
window.setTimeout('text_scroll()', 110);

}
