function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function navOver(navId, navTxt) {
  status=navTxt;
  document.getElementById(navId).style.backgroundColor='#DDA5B0';
  document.getElementById(navId+'_a').style.color='#AA1E59';
}

function navOut(navId) {
  status='';
  document.getElementById(navId).style.backgroundColor='';
  document.getElementById(navId+'_a').style.color='';
}

function zeileOver(zeileId) {
  status='zeigt den gew&auml;hlten Eintrag an';
  document.getElementById('zeile'+zeileId).style.backgroundColor='#FFFFFF';
}

function zeileOut(zeileId) {
  status='';
  document.getElementById('zeile'+zeileId).style.backgroundColor='';
}

var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}