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