<!---
neues_Fenster = null;
function Oeffnen(Datei0,Titel0,Breite0,Hoehe0)
{
Datei = Datei0;
Titel = Titel0;
Breite = Breite0;
Hoehe = Hoehe0;
zu();
setTimeout("sichtbar()",1000);
}
function sichtbar()
{  
Fenster_Hoehe = Hoehe;
Fenster_Breite = Breite;
Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,height='+Fenster_Hoehe+',width='+Fenster_Breite;
neues_Fenster = window.open(Datei,'',Optionen)
}
function zu()
{
if (neues_Fenster != null)
if (!neues_Fenster.closed)
neues_Fenster.close();
}
//--->