function showPic(cPicture,nWidth,nHeight,msg,credit,year) {
	nHeight = nHeight + 70;
	nWidth = nWidth + 40;

	newWindow = window.open("","HirRes", "HEIGHT="+nHeight+", WIDTH="+nWidth+", dependent=yes,scrollbars=no,resizable=no,left=250,top=35");
	
	with (newWindow.document) {
		write('<html>\n');
		write('<head>\n');
		write('<title>' + msg + '</title>\n');
		write ('<link rel="stylesheet" href="style.css" type="text/css">\n');
		write('</head>\n');
		write ('<body topmargin="8">\n');
		write ('<div id="content" align="center" valign="top">');
		write ('<img src="' + cPicture + '">\n');
		write ('<div align="center" class="txt">\n');
		if (msg != '') {
			write (msg + "<br>");
		}
		write ('[ <a href="javascript:self.close()" class="more">Close Window</a> ]\n');
		write ('</div>\n');
		write ('</div>\n');
		write ("</body>\n"); 
		write ("</html>"); 
		close();
	}
}
