//=== scroll w linii statusu ===
msg = "Witam na stronie motocyklowej \"Wolny Wydech\" -^"+
      "- Karwik.^^^^" +
      "Kliknij logo, aby przejść dalej.^^^^" +
      "^"
speed = 7
delay = 300
txt   = ""

function scrolltext(pos)
{
 if(msg.charAt(pos)!='^')
  {
   txt    = txt + msg.charAt(pos)
   status = txt
   pause  = speed
  }
 else
  {
   pause = delay
   txt   = ""
   if(pos==msg.length-1)pos=-1
  }
 pos++
 setTimeout("scrolltext('"+pos+"')",pause)
}
scrolltext(0)
//==================================================
