
    var myfenster=null;


   function neufenster(url)
    {
 if(myfenster && myfenster.closed)myfenster=null;
    if(!(myfenster)){ myfenster=window.open(url,'','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,menubar,resizeable=no,width=550,height=390')
    }
    else{
    myfenster.focus();
    }
    }




 var tickertapeform
speed=100
len=80
space="                                                                                                    "
tid = 0;
message=""
c= -len;

function move() {
  cend=Math.min(c+len,message.length)
  if (c <0)
    cstart=0
  else
    cstart=c
  if (c < 0)
    f.scroll.value=space.substring(0,-c) + message.substring(cstart,cend)
  else
    f.scroll.value=message.substring(cstart,cend)
  c = c +1;
  if (c == message.length ) c = -len;
  tid=window.setTimeout("move()",speed);
}

function start(x) {
  f=x
  tid=window.setTimeout("move()",speed);
}

function cleartid() {
  window.clearTimeout(tid);
}

       // for some reason on some pages this crashes netscape
function ticker(m,l,s)
{
message=m
len=l
speed=s
document.write('<FORM name=tickertapeform><input name=scroll size=')
document.write(len)
document.write(' value=""></FORM>')
start(document.tickertapeform);
}


function ticker(m)
{
message=m
len=80
speed=80
document.write('<FORM name=tickertapeform><input type=text style="background-color:#000080;BORDER-LEFT: #000080 thin solid;BORDER-RIGHT: #000080 thin solid;BORDER-TOP: #000080 thin solid;BORDER-BOTTOM: #000080 thin solid;font-family:TIMES NEW ROMAN,HELVETICA,VERDANA,ARIAL;font-size:18px;" name=scroll size=60></FORM>');
start(document.tickertapeform);
}


