function oeffnen(Bild0,Titel0,Breite0,Hoehe0)
{
   Bild = Bild0;
   Titel = Titel0;
   Breite = Breite0;
   Hoehe = Hoehe0;
 
   
   fenster()
}

function fenster()
{  
   Fenster_Hoehe = Hoehe + 0;
   Fenster_Breite = Breite + 0;
   Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,left=0,top=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 topmargin="0" leftmargin="0" marginwidth=0 marginheight=0>');
      document.writeln('<a href="#" onClick="window.close();"><IMG SRC="'+Bild+'" alt="Bildzoom" WIDTH='+Breite+' HEIGHT='+Hoehe+' BORDER=0 TITLE="Fenster schlie&szlig;en!" NAME="Fenster schlie&szlig;en!"></a>');
      document.writeln('</BODY></HTML>')
   }
}

