neues_Fenster = null;

function errorTrap() {return true;}
window.onerror = errorTrap;

function zeige(Bild0,Titel0,Breite0,Hoehe0)
{
   Bild = Bild0;
   Titel = Titel0;
   Breite = Breite0;
   Hoehe = Hoehe0;
   setTimeout("sichtbar()",500);

}

function sichtbar()
{  
   Fenster_Hoehe = Hoehe+0;
   Fenster_Breite = Breite+0;
   Optionen = 'left=30,top=50,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,height='+Fenster_Hoehe+',width='+Fenster_Breite;
   neues_Fenster = window.open('','',Optionen)
   with (neues_Fenster) 
   {
      document.writeln('<HTML><HEAD><TITLE>' + Titel + '</TITLE></HEAD>');
      document.writeln('<BODY BGCOLOR="#000000" TEXT="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><DIV ALIGN="CENTER"><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 VALIGN="MIDDLE" ALIGN="CENTER"><TR><TD>');
      document.writeln('<IMG SRC="'+Bild+'" WIDTH='+Breite+' HEIGHT='+Hoehe+' BORDER=0 ALT="'+Titel+'"></TD>');
      document.writeln('</TR></TABLE></DIV></BODY></HTML>');
   }
}

function zu()
{
   if (neues_Fenster != null)
     if (!neues_Fenster.closed)
        if (neues_Fenster.close)
           neues_Fenster.close(); 
}
