  function Glossar()
        {
           glossarwin =  window.open('../glossar/glossar.html','Glossar','width=400,height=650,resizable,nostatus,scrollbars');
           glossarwin.moveTo(600,100);
           if(glossarwin.closed == false) glossarwin.focus();
        }
  function Quiz()
        {
           quizwin =  window.open('../quiz/bvquiz.html','Quiz','width=680,height=700,resizable,nostatus,scrollbars');
           if(quizwin.closed == false) quizwin.focus();
        }
  function Suchen()
        {
           suchwin =  window.open('../suche/suche.html','Suchen','width=500,height=500,resizable,nostatus,scrollbars');
           if(suchwin.closed == false) suchwin.focus();
        }
speed=100;
len=150;
space="                                                                                                                                                                      ";
tid = 0;
message="Bildverarbeitung I - FH Darmstadt";
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();
}

