// info na pasku 
  message     = "Polisch Amateur Radio Station^" +
                "SQ6MIP - Op. Maciej   CQ  Zone-15  ITU-28  QTH-Wroclaw  Loc:JO81LD^" +
                "^" +
                "^" +
                "SQ6MIP^"
  scrollSpeed = 30
  lineDelay   = 2000

  // Do not change the text below //

  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)