// !!!! BANER !!!!
// W3e JAVAScript Preset. Original banner code by Timothy  (timothy@essex1.com)
// Skrypt pochodzi z biblioteki programu WebSite

Message = "LAST MINUTE!!! ---> Gospodarstwa agroturystyczne w Albanii, Rumunii, Etiopii i na Kubie zapraszają! ---> Podróż na starej kobyle GRATIS! ---> Nie przegap takiej okazji!!!";
Size = 90;
Pos=Size;
Speed = 0.4;

function Banner() 
{
   Spaces = "";
   for (count=0; count<Pos; count++) 
      Spaces+= " ";
   if (Pos < 1) 
   {
      document.Banner.Bar.value = Message.substring(Math.abs(Pos), Message.length);
      if (Pos+Message.length < 1)
         {Pos = Size;}
   } 
   else 
      document.Banner.Bar.value = Spaces + Message;
   Pos-=Speed;
   setTimeout('Banner();', 15);
}
//-->
