var scrtxt="Informacja dla nowych klientów...*"+
             "Podane ceny sa cenami brutto...*"+
             "Zamówienia można składać po zalogowaniu....*"+
             "Transport Warszawa GRATIS! Przy zamówieniu powyżej 1500zł #";

  var startpos=0;
  var endpos=1;

 function scroll() {
  var scroller="";
  scroller=scrtxt.substring(startpos,endpos);
  document.sform.stxt.value = scroller;
  endpos++;
  if (scrtxt.substring(endpos-1,endpos)=='#')
   {startpos=0; endpos=1; setTimeout("scroll()",2500); }
   else
     if (scrtxt.substring(endpos-1,endpos)=='*')
       {startpos=endpos; endpos++; setTimeout("scroll()",2500);}
       else {setTimeout("scroll()",10);}
  }

