  // PopUp Fenster öffnen
  function opnWindow(path, name){
    // Bildschirmauflösung
    // iWidth = screen.availWidth/2;
    // iHeight = screen.availHeight/4;
    iWidth = 640; iHeight = 480;
    // Fenster mit Übergabeparametern öffnen 
    window.open(path,name,'width='+iWidth+', height='+iHeight+'');
  }
  
  function opnWindow_byWH(path, name, width, height){
    // Bildschirmauflösung
    // iWidth = screen.availWidth/2;
    // iHeight = screen.availHeight/4;
    iWidth = width; iHeight = height;
    // Fenster mit Übergabeparametern öffnen 
    window.open(path,name,'width='+iWidth+', height='+iHeight+'');
  }