function openImgWindow(imgurl,titel,breite,hoehe,end)
{
var imgpath = imgurl+'.'+end;
var subwin=window.open("","","toolbar=no,width="+(breite+10)+",height="+(hoehe+30)+",top=200,left=200,location=no,directories=no,menubar=no,scrollbars=auto,resizable=no");
subwin.focus();
subwin.document.writeln("<html><head><title>"+titel+"</title></head>");
subwin.document.writeln("<body onblur='self.close()' bgcolor='#f5f5f5' marginheight='0' marginwidth='0' leftmargin='0' topmargin='0'>");
subwin.document.writeln("<table border='0' cellpadding='0' cellspacing='0' width='"+breite+"'>");
subwin.document.writeln("<tr valign='top'><td height='"+hoehe+"' align=center><img onmousedown='javascript:self.close()' src='"+imgpath+"' border='0' hspace='5' vspace='5'></td></tr>");
subwin.document.writeln("<tr><td align='center' height='22'><a href='javascript:self.close()' style='font-family:arial,helvetica,sans-serif;font-size:8pt;color:#663300;'><b>Fenster schließen</b></a></td></tr>");
subwin.document.writeln("</table></body></html>");
}
