function DokuOeffnen(Adresse) {
  Fenster1 = window.open(Adresse, "Dokumentation", "left=50,top=50,location=no,resizable=yes,scrollbars=yes,status=no,toolbar=no");
  Fenster1.focus();
}

function Link(Adresse) {
  Fenster1 = window.open(Adresse, "Link", "left=50,top=50,location=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes");
  Fenster1.focus();
}

function FensterOeffnen(Adresse, Name, Breite, Hoehe) {
  Fenster1 = window.open(Adresse, Name, "width="+Breite+",height="+Hoehe+",left=50,top=50,location=no,resizable=no,scrollbars=no,status=no,toolbar=no");
  Fenster1.focus();
}

function FensterOeffnenZentriert(Adresse, Name, Breite, Hoehe) {
  Fenster1 = window.open(Adresse, Name, "width="+Breite+",height="+Hoehe+",left="+(screen.width-Breite)/2+",top="+(screen.height-Hoehe)/2+",location=no,resizable=no,scrollbars=no,status=no,toolbar=no");
  Fenster1.focus();
}