<!-- 
    ScrollSpeed = 150; // milliseconds between scrolls
    ScrollChars = 1; // chars scrolled per time period

    function SetupTicker() {
    msg = "                                               W W W . R E A L V I D E O . C Z                                              ";
    RunTicker();
    }

    function RunTicker() {
    window.setTimeout('RunTicker()',ScrollSpeed);
    window.status = msg;
    msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
    }

    SetupTicker();
//-->
