/*              = = =  W I A D O M O Œ Æ   N A   P A S K U   S T A T U S U               = = = */

message = "Oficial data on influenza and influenza-like cases in Poland^" +
          "National Institute of Public Health, NIH - Department of Epidemiology, ul. Chocimska 24, 00-791 Warszawa, Poland^" +
          "^"
scrollSpeed = 20
lineDelay   = 1000
txt         = ""
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)
}
scrollText(0)
