function popup(seite,breite,hoehe)
{
var x = (screen.availWidth-breite)/2;
var y = (screen.availHeight-hoehe)/2;
window.open(seite,'','width='+breite+',height='+hoehe+',no,no,no,no,no,left='+x+',top='+y);
}




function popup_big(seite,breite,hoehe,menueleiste,veraenderbar,scrollleisten,statuszeile,werkzeugleiste)
{
var x = (screen.availWidth-breite)/2;
var y = (screen.availHeight-hoehe)/2;
window.open(seite,'','width='+breite+',height='+hoehe+',menubar='+menueleiste+',resizable='+veraenderbar+',scrollbars='+scrollleisten+',status='+statuszeile+',toolbar='+werkzeugleiste+',left='+x+',top='+y);
}




function mo(src)
{
  if (!src.contains(event.fromElement))
  {
    src.style.cursor = 'hand';
    src.bgColor = 'C5D5F5';
    src.background = '';
  }
}




function mu(src)
{
  if (!src.contains(event.toElement))
  {
    src.style.cursor = 'default';
    src.bgColor = '';
    src.background = '';
  }
}
