function popUP(pictSrc,tittel,pictWidth,pictHeight) {
	var winWidth = pictWidth + 40;
	var winHeight = pictHeight + 40;
	var vindu = open("","cover","width="+winWidth+" height="+winHeight);
	vindu.document.open();
	vindu.document.write("<html><head><title>" + tittel + "</title><link type='text/css' rel='stylesheet' href='../javastyle.css' /></head><body>");
	vindu.document.write("<table width='100%' border='0'><tr><td align='center'>")
	vindu.document.write("<a href='javascript;' onclick='window.close();'><img src='../images/big/" + pictSrc + "' width='" + pictWidth + "' height='" + pictHeight + "' border='0' alt='Please click on the image to close the window' /></a>");
	vindu.document.write("</td></tr></table>")
	vindu.document.write("</body></html>");
	vindu.document.close();
}
