function PopUpGalleri(imgUrl,features,bildtext)
{
	if (bildtext == null){
		bildtext = "";
	}

	imgWindow = window.open('', '', features + 'scroll-bars=no');
	imgWindow.document.open();
	imgWindow.document.write('<html><head><title>Konstnärsföreningen Lidan</title><link href="css/screen.css" rel="stylesheet" type="text/css" media="all"></head><body class="popup" style="margin:0;" onblur="window.close();"><img src="img/galleri/' + imgUrl + '" alt="Konstnärsföreningen Lidan" /><p>' + bildtext + '</p></body></html>');
	imgWindow.document.close();
}