// JavaScript Document

function FensterOeffnen (Adresse) {
  Fenster1 = window.open(Adresse, "Zweitfenster", "scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,width=400,height=640,left=20,top=20");
  Fenster1.focus();
}

function FensterOeffnenF1 (Adresse) {
  Fenster2 = window.open(Adresse, "Formularfenster1", "scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,width=400,height=640,left=20,top=20");
  Fenster3.focus();
}


