function popupImage(img_src, page_title) {
	w = window.open(null, 'popupImage', 'alwaysRaised=1,toolbar=0,status=0,location=0,directories=0,menubar=0,resizable=0,scrollbars=0,width=500,height=550');
	w.document.open();
	//w.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"\n"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
	w.document.writeln('<html>');
	w.document.writeln('<head><title>'+page_title+'</title></head>');
	w.document.writeln('<body>');
	w.document.writeln('<table border="0" height="100%" width="100%" cellpadding="0" cellspacing="0">');
	w.document.writeln('  <tr><td style="text-align:center">');
	w.document.writeln('   <a href="#" onclick="window.close();"><img src="'+img_src+'" border="0" alt="Klick schließt Fenster"></a></td>');
	w.document.writeln('  </td></tr>');
	w.document.writeln('  </table>');
	w.document.writeln('</body>');
	w.document.writeln('</html>');
	w.document.close();
};
