  ScrollSpeed = 150; 
     ScrollChars = 1;    
     function SetupTicker() {
     // add space to the left of the message
      msg = "    ..... voda, topení, kanalizace, plyn ....  PRODEJNA - otevřeno: Po - Pá - 7.30 - 18.00 hodin,   So - 8.00 - 11.30 hodin  ";
       msg += "....... Praha 5, Plzeňská 1234/279 ...... tel/fax: 251 627 939 ";
      msg += "   ";
        // this starts the ticker
     RunTicker();
     }
     function RunTicker() {
     window.setTimeout('RunTicker()',ScrollSpeed);
     window.status = msg;
     msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
     }
     SetupTicker();

