// Popup-Fenster (universell)
//BEGIN-------------------------------------------------

function PopupFenster(URL, Breite, Hoehe, IBreite, IHoehe, PosX, PosY) {
  FPopup = window.open(URL, "PopupFenster", "width="+Breite+", height="+Hoehe+", innerWidth="+IBreite+", innerHeight="+IHoehe+", left="+PosX+", top="+PosY+", dependent=yes,scrollbars=no");
  FPopup.focus();
}

//END-------------------------------------------------


// Syntax zum Aufrufen:
//
// PopupFenster('dateiname.html', '660', '530', '650', '520', '100', '100')
//

