function popup_image(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=auto");
	win.document.open();
	win.document.write('<html><title>Detailansicht</title><head><meta http-equiv="imagetoolbar" content="no"><link rel="stylesheet" type="text/css" href="../styles_content.css"></head><body class="styles_content.css" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
	win.document.write('<table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%"><tr><td><div align="center"><img src="' +img_name + '" width="' + img_width + '" height="' + img_height + '"></div></td></tr></table>'); 
	win.document.write('</body></html>');
	win.document.close();
	win.focus();
}
