function Fenster (img,width,height) {
	if (!width) { var width="550"; }
	if (!height) { var height="350"; }
  	Fenster_Zoom = window.open("","Zoom","scrollbars=no,width="+width+",height="+height+",left=10,top=10");
	Fenster_Zoom.document.open();
	Fenster_Zoom.document.write('<html><title>Zoom-Fenster</title><body bgcolor="#f6ecea" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()"><table cellspacing="0" cellpadding="0" width="100%" height="100%" border="0"><tr><td align="center" valign="middle">'); 
	Fenster_Zoom.document.write('<img src=\"'+img+'\" border="0">');
	Fenster_Zoom.document.write('</td></tr></table></body></html>');
	Fenster_Zoom.document.close();
	Fenster_Zoom.focus();
}
