  function mOver(cell, Statustext)
  {
    cell.style.cursor='hand';
    cell.bgColor='#FFFF99';
    window.status=Statustext;
  }

  function mOut(cell)
  {
    cell.style.cursor='default';
    cell.bgColor='#DBEAF5';
    window.status='';
  }

/* --------- Bildwechsel --------- */
  firstpic = new Image(); firstpic.src = "imgSchau.jpg";
  secondpic = new Image(); secondpic.src = "imgMal.jpg";
  function bildwechsel1() 
  { 
    document.bildwechsel.src = firstpic.src 
  }
  function bildwechsel2() 
  { 
    document.bildwechsel.src = secondpic.src
  }


  function Warn()
  {
    alert("Achtung! Sie klicken in einen geschützten Bereich");
  }

  function Frage()
  {
    Antwort=prompt("Wer ist da?","Vorgabe");
  }


/* --------- Fenstertips --------- */
  var Fenster_window = null;
  function FensterTip(Text, status)
  {
     if(status != 0)
     {
        if(Fenster != null) Fenster.focus();
        else
        {
           var Fenster = open('', 'Fenster', 'width=' + (Text.length*3) + ',height=10');
           Fenster_window = Fenster;
           Fenster.document.open();
           Fenster.document.writeln('<html><head><title>Fenster-Tip</title></head><body text=black bgcolor=#FFFFE0>');
           Fenster.document.writeln('<CENTER><FONT size=2><B>' + Text + '</B></FONT></CENTER>');
           Fenster.document.writeln('</body></html>');
           Fenster.document.close();
        }
     }
     else
     {
       if(Fenster_window != null) Fenster_window.close();
     }
  }


  function GeheZu(form)
  {
    var myindex=form.dest.selectedIndex
    /* Assign lässt zurück zu. Replace nicht */
    window.location.assign(form.dest.options[myindex].value);
  }



/* --------- Rechte Maustaste deaktivieren --------- */
  function noRightClick(e) 
  {
    if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2))
    {  
      return false;
    }
    else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) 
    {
      alert("Hier steckt unsere Erfahrung, die wir Ihnen gerne anbieten -- GECCOS Tel.07192-909140");
      return false;
    }
    return true;
  }

  document.onmousedown=noRightClick;

  if (document.layers) window.captureEvents(Event.MOUSEDOWN);
  window.onmousedown=noRightClick;


/* --------- Zeitmessung --------- */
  function Kommentar(text)
  {
    alert(text);
  }

  startday = new Date();
  clockStart = startday.getTime();
  function initStopwatch() 
  {
    var myTime = new Date(); 
    var timeNow = myTime.getTime();  
    var timeDiff = timeNow - clockStart; 
    this.diffSecs = timeDiff/1000; 
    return(this.diffSecs);
  } 

  function getSecs() 
  {
    var mySecs = initStopwatch(); 
    var mySecs1 = ""+mySecs; 
    mySecs1= mySecs1.substring(0,mySecs1.indexOf(".")) + " sek."; 
    document.Zeit.timespent.value = mySecs1 
    window.setTimeout('getSecs()',1000);
  }
 
/* Bildaufhellung */
  function high(which2)
  {
    theobject=which2
    highlighting=setInterval("highlightit(theobject)",50)
  }

  function low(which2)
  {
    clearInterval(highlighting)
    which2.filters.alpha.opacity=40      /* 40 ist die resthelligkeit */
  }

  function highlightit(cur2)
  {
    if (cur2.filters.alpha.opacity<100)
      cur2.filters.alpha.opacity+=100       /* 5 ist die Geschwindigkeit des Dunkelwerdens*/
    else if (window.highlighting)
      clearInterval(highlighting)
  }

