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

function sichtbar()
{  
   Fenster_Hoehe = Hoehe + 0;
   Fenster_Breite = Breite + 0;
   Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,left=200,top=100,height='+Fenster_Hoehe+',width='+Fenster_Breite;
   neues_Fenster = window.open('','',Optionen)
   with (neues_Fenster) 
   {
      document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
      document.writeln('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><title>' + Titel + '</title></head>');
      document.writeln('<body background="images/body.gif" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">');
      document.writeln('<a href="javascript:onClick=self.close()" border="0"><img src="'+Bild+'" width='+Breite+' height='+Hoehe+' border=0 alt="'+Titel+'" /></a>');
      document.writeln('</body></html>')
   }
}
