function popup(img_name, img_width, img_height) {
	var left = (screen.width - img_width)/2;
	var top = (screen.height - img_height)/2;
	win = window.open("","win","width=" + img_width + ",height=" + img_height + ",left=" + left + ",top=" + top + ",scrollbars=no");
	win.document.open();
	win.document.write('<html><title>Detailansicht</title><head></head><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close();">'); 
	win.document.write('<img src="'+img_name+'" width="'+ img_width+'" height="'+img_height+'">'); 
	win.document.write('</body></html>');
	win.document.close();
	win.focus();
}