
function display(a, w, h)
    {
    var Win = window.open(a,"",'width=' + w + ',height=' + h + ',resizable=1,scrollbars=yes,menubar=no,status=yes');
    
    }
function display1(a, w, h)
    {
    var Win = window.open(a,"",'width=' + w + ',height=' + h + ',resizable=1,scrollbars=no,menubar=no,status=no');
    
    }

message     = "Bank-Internetowy.pl - Specjalistyczny Portal Finansowy nr 1^" +
 "Prawdopodobnie najwieksza platforma finansowa OnLine^" +
 "Swoje oferty prezentuja najwieksze banki w Polsce:^" +
   "mBank^" +
   "Bank Inteligo^" +
   "MultiBank^" +
   "Bank BPH^" +
   "CitiBank Handlowy^" +
   "Raiffeisen Bank Polska^" +
   "GE Money Bank Mieszkaniowy^" +
   "Bank Millennium^" +
   "DomBank^" +
   "Santander Consumer Bank^" +
   "Bank Zachodni WBK^" +
   "Powszechny Dom Kredytowy^" +
   "Fortis Bank^" +
   
                "^"
  scrollSpeed = 40
  lineDelay   = 1500

  // 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)
  }


defaultStatus=scrollText(0);

