<!--// CHANGE THESE TO ALTER THE SCROLL SPEED

function upoutavka() {
	var okno = "upoutavka.html";
	if (navigator.appName == "Microsoft Internet Explorer"){
		window.open(okno, "NewWin", "toolbar=no, left=450, top=250, scrollbars=no, resizeable=no, width=300, height=200");
		}
	else if (navigator.appName == "Netscape") {
		window.open(okno, "NewWin", 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0,width=300,height=200,top=450,left=250');
		}
}

        ScrollSpeed = 0;  // milliseconds between scrolls
        ScrollChars = 0;    // 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 += "Wallpapers • Design Green Cat";

          msg += " ";
          // 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();
        <!-- end -->
		

