function scrollText(pos) {



   if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos);
      status = txt;
      pauze  = scrollSpeed;
    }
    else 
    {
      pauze = lineDelay;
      txt   = "";
      if (pos == message.length-1) pos = -1;
    }
    pos++;
    setTimeout("scrollText('"+pos+"')",pauze);
    }

message     = "Hello :)) :)) Hello :)))))) Hello :))))^" +
                "Pozdrawiam wszystkich których:)) znam i tych co nie też :))^";
scrollSpeed = 30;
lineDelay   = 2000;
txt         = "" ;



function displayWindow(url, width, height) {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no,top=1, left=1' );
};





