
function openfenster(bild,breite,hoehe){

breite2 = breite+50;
hoehe2 = hoehe+70;

var fenster_property = "width=" + breite2 + ",height=" + hoehe2 + ",resizable=0,screenX=0,screenY=0,left=0,top=0";

defwin=window.open("",hoehe,fenster_property)
defwin.document.open()
defwin.document.write("<html><head><title>Produktdetails</title></head><body text=#000000 bgcolor=#FFFFFF link=#000000 vlink=#000000 alink=#0000EE onMouseDown='javascript:window.close()' onKeyDown='javascript:window.close()'>")
defwin.document.writeln("<CENTER><a href=javascript:window.close()><img SRC=http://unemode.ibh-server.de/shop/images/schliessen.gif border=0></a><p>");
defwin.document.write("<img SRC='",bild,"' height='",hoehe,"' width='",breite,"' galleryimg='no' onMouseDown='javascript:window.close()'>")
defwin.document.write("</CENTER></body></html>")
defwin.document.close()
defwin.focus();
clearID=defwin.setTimeout("self.close()",20000)
}

function agb(datei)
 {
  BildFenster =
  window.open(datei, "Crematory", "width=600,height=400,screenX=10,screenX=10,scrollbars=yes,resizable=yes");
  BildFenster.focus();
 }

