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