 // CHANGE THESE TO ALTER THE SCROLL SPEED

        ScrollSpeed = 150;  // milliseconds between scrolls

        ScrollChars = 1;    // chars scrolled per time period

        function SetupTicker() {

        // add space to the left of the message

          msg = "         .   .   .          ";

          // PUT YOUR MESSAGE HERE, USE += TO ADD THEM TOGETHER

          msg += "     LAPY s.r.o.    ";

          msg += "     .   .   .     ";

          msg += "     http://www.lapy.cz  ";

          msg += "     .   .   .     ";

          msg += "     Copyright 2006 @ Ing. Zbyněk Pospěch      ";

          // this starts the ticker

        RunTicker();

        }

        function RunTicker() {

        window.setTimeout('RunTicker()',ScrollSpeed);

        window.status = msg;

        msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);

        }

        // Start the ticker code

        SetupTicker();

	
