var scrtxt = "Last Update: 27.12.2005*** "+
    	" More pictures of Devese are online +++"+
    	" www.devese.com - the Original! got the newest data ***"+
    	" Now shows the current weather outlook ***"+
    	" Links to Eldagsen and Schulenburg are online ***"+
	" The English version is online. Welcome to our Visitors with English mother tounge*** "+
     " Did you alredy signed the Guestbook or the Forum?";
      var laengetxt = scrtxt.length;
      var breite = 100;
      var pos = -(breite + 2);

      function scroll() {
      pos++;
      var scroller = "";
      if (pos == laengetxt) {
      pos = -(breite + 2);
      }
      if (pos < 0) {
      for (var i = 1; i <= Math.abs(pos); i++) {
      scroller = scroller+" ";}
      scroller = scroller + scrtxt.substring(0, breite - i + 1);
      }
      else {
      scroller = scroller + scrtxt.substring(pos, breite + pos);
      }
      window.status = scroller;
      scrollTimer = setTimeout("scroll()", 100);
      }

      function anhalten() {
      clearTimeout(scrollTimer);
      }