<!--
  function OpenWindow(datei)
  {
    URL= datei +".html";
    fenster= window.open( URL, datei,       "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,screenX=400,screenY=200,width=550,height=300");
    if (navigator.appName.substring(0,8) == "Netscape")
       {
      fenster.location=URL;
       }
     else
     {
     fenster.moveTo(screen.width-700,screen.height-600);
     fenster.focus();
     }


  }
// -->
