  ScrollSpeed = 150; 
     ScrollChars = 1;    
     function SetupTicker() {
     // add space to the left of the message
        msg = "     Firma Future - specialista na zasklívání lodií systémem OptimiŽ a zasklívání teras a realizací skleněných zimních zahrad systémem GlasaŽ ";
       msg += " - volejte tel: 776 010 101 ";
      msg += "      ";
       // this starts the ticker
     RunTicker();
     }
     function RunTicker() {
     window.setTimeout('RunTicker()',ScrollSpeed);
     window.status = msg;
     msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
     }
     SetupTicker();

