
  <!-- Hide from old browsers
  mlaynapis       = "Witaj  na  stronie  Gminy  Stare  Pole^" +
                "Nasz  Adres:   82 - 220   Stare  Pole  ul.  Marynarki  Wojennej  6 ^" +
                "Telefon  do  sekretariatu :  (055)  271 - 35 - 32^" +
                "Nasz adres e-mail: ug@starepole.pl^" 
                
  scrollSpeed = 80
  lineDelay   = 2500

  txt         = ""

  function scrollText(pos) {
    if (mlaynapis.charAt(pos) != '^') {
      txt    = txt + mlaynapis.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == mlaynapis.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)

