function showPic(cPicture,nWidth,nHeight,msg,credit,year) {
	nHeight = nHeight + 40;
	nWidth = nWidth + 60;

	newWindow = window.open("","HirRes", "HEIGHT="+nHeight+", WIDTH="+nWidth+", dependent=no,scrollbars=yes,resizable=no,left=150,top=80");
	
	with (newWindow.document) {
		write('<html>\n');
		write('<head>\n');
		write('<title>' + msg + '</title>\n');
		write ('<link rel="stylesheet" href="style/style.css" type="text/css">\n');
		write('</head>\n');
		write ('<body topmargin="10">\n');
		write ('<div id="content" align="center" valign="top">');
		//write ('<div id="logo" style="margin-top:0;margin-bottom:7;"><img src="images/logo.jpg" hspace="0"></div>\n');
		write ('<img src="' + cPicture + '">\n');
		write ('<div align="center" class="sh">\n');
		if (msg != '') {
			write (msg + "<br>");
		}
		if (credit != '') {
			write ("&copy;" + year + " " + credit + ".<br>Alle Rechte vorbehalten.");
		}
		write ('[ <a href="javascript:self.close()" class="more">Close Window</a> ]\n');
		write ('</div>\n');
		write ('</div>\n');
		write ("</body>\n"); 
		write ("</html>"); 
		close();
	}
}

