function zeigfoto(bildurl,b,h,t)
{
var eigenschaft,sbreite,shoehe,fenster;

sbreite = screen.width;
shoehe = screen.height;

x = (sbreite-b)/2;
y = (shoehe-h)/2;

eigenschaften = "left=" + x + ", top = " + y + ", screenX = " + x + ", screenY = " + y + ", width = " + b + ", height = " + h + ", menubar = no, toolbar = no";

fenster = window.open("", "", eigenschaften);
fenster.focus();
fenster.document.open();
with (fenster)
  {
  document.write('<html><head>');
  document.write("<script type='text/javascript'>");
  document.write("function click() { window.close(); } ");  // bei click  schliessen
  document.write("document.onmousedown=click ");
  document.write("</script></head>");
  document.write('<body onblur="window.close()" '); // bei Focusverlust schliessen
  document.write('marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">');
  document.write('<title>' + t + ' </title></head>');
  document.write('<center>');
  document.write('<img src="'+ bildurl +'"border="0">');
  document.write('<center>');
  document.write('</body></html>');
  document.close();
  }
}