function PopUp(imgUrl,features)
{
	imgWindow = window.open('', '', features + 'scroll-bars=no');
	imgWindow.document.open();
	imgWindow.document.write('<html><head><title>Luftmilj&ouml;</title></head><body style="margin:0;" onblur="window.close();"><img src="' + imgUrl + '" alt="Luftmilj&ouml;" /></body></html>');
	imgWindow.document.close();
}