function openfenster(bild,breite,hoehe){

if (breite < 200) breite = 200;
if (hoehe < 200) hoehe = 200;

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

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://www.rascal.de/rascal/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>&copy; www.i-b-h.net</body></html>")
defwin.document.close()
defwin.focus();
clearID=defwin.setTimeout("self.close()",20000)
}
