function openWindow(picURL,picExpla,picHeight,picWidth)
	{
		var featureString =	'location=no,'+
					'menubar=no,'+
					'scrollbars=no,'+
					'status=no,'+
					'toolbar=no,'+
					'resizable=yes,'+
					'left=20,'+
					'top=20,'+
					'height='+picHeight+',width='+picWidth;

		var myHTML =	'<html>													'+
				'	<head>												'+
				'		<title>'+picExpla+'</title>								'+
				'			<link rel="stylesheet" href="css/birkeland.css">				'+
				'	</head>												'+
				'	<body>												'+
				'		<img src='+picURL+' border="1"/><br/><br/>						'+
				'													'+
				'			<center>									'+
				'			[<a href="#" onClick="self.print();">Skriv ut! / Print! / Schreiben!</a>]	'+
				'			</center>									'+
				'	</body>												'+
				'</html>';
			
		popUp = window.open('','popper',featureString);
		popUp.document.write(myHTML);
		popUp.document.close();
	}

				
