function fenster (seite,breite,hoehe) {
kette = "width="+breite+",height="+hoehe+",top=15,left=15,resizable=yes,menubar=no,hotkeys=no,location=no,toolbar=no,status=no";
F = window.open(seite,"neu",kette);
F.resizeTo(breite,hoehe);
F.focus();
}