  // 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){
    // PopUp in Bildschirmauflösung?
		if(width > screen.availWidth){ iWidth = ((width - screen.availWidth) / 100) * 80; }else{ iWidth = width; }
		if(height > screen.iHeight){ iHeight = ((height - screen.availHeight) / 100) * 80; }else{ iHeight = height; }
    // Fenster mit Übergabeparametern öffnen 
    window.open(path,name,'width='+iWidth+', height='+iHeight+'');
  }