speed=70
len=120
space="   "
tid = 0;
message="M u s   r a s i t e :   K a u n a s ,   J u r b a r k o   2 A   -   0 7 k a b. ,   t e l . / f a k s . :   ( 3 7 )   4 2 5 1 6 2 ,   m o b. n r.   + 3 7 0 6 1 1 4 7 1 4 0,   e - p a š t a s :  i n f o @ i d l e n a . l t "
c= -len;

function move() {
  cend=Math.min(c+len,message.length)
  if (c <0)
    cstart=0
  else
    cstart=c
  if (c < 0)
    window.status = space.substring(0,-c) + message.substring(cstart,cend)
  else
    window.status = message.substring(cstart,cend)
  c = c +1;
  if (c == message.length ) c = -len;
  tid=window.setTimeout("move()",speed);
}
 
function start() {
  tid=window.setTimeout("move()",speed);
}
 
// for some reason on some pages this crashes netscape
function statusticker(m,s)
{
message=m
speed=s
start();
}

// for some reason on some pages this crashes netscape
function statusticker(m)
{
message=m
speed=100
start();
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}