function heardImg(imgurl, win, width, height, restitle, caption, catalogue)
{
	horz = width + 28;
	vert = height + 100;
	imgwin = window.open('', win, 'resizable=no,toolbar=no,menubar=no,width=' + horz + ',height=' + vert);
	imgwin.document.writeln('<html><head><title>' + restitle + '</title><meta http-equiv="imagetoolbar" content="no"><link rel="stylesheet" href="/style.css" type="text/css"></head>');
	imgwin.document.writeln('<body bgcolor="#ffffff" text="#000000">');
	imgwin.document.writeln('<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%">');
	imgwin.document.writeln('<tr>');
	imgwin.document.writeln('<td colspan="3" width="100%"><img src="/images/spacer.gif" alt="" width="1" height="1" border="0"></td>');
	imgwin.document.writeln('</tr>');
	imgwin.document.writeln('<tr>');
	imgwin.document.writeln('<td width="50%" valign="middle"><img src="/images/spacer.gif" alt="" width="1" height="1" border="0"></td>');
	imgwin.document.writeln('<td align="left" valign="middle">');
	imgwin.document.writeln('<img src="' + imgurl + '" alt="' + restitle + '" width="' + width + '" height="' + height + '" border="0"><br>');
	imgwin.document.writeln('<table border="0" cellpadding="5" cellspacing="0" width="100%">');
	imgwin.document.writeln('<tr>');
	imgwin.document.writeln('<td align="left" valign="top" background="/images/popupTitleBacking.jpg"><img src="/images/spacer.gif" alt="" width="5" height="1" border="0"><b>' + catalogue + '</b></td>');
	imgwin.document.writeln('</tr>');
	imgwin.document.writeln('</table>');
	imgwin.document.writeln('<br>');
/*	imgwin.document.writeln('<img src="/images/spacer.gif" alt="" width="10" height="1" border="0"><b>Dimensions:</b> ' + width + ' &times; ' + height + '<br>'); */
	imgwin.document.writeln('<img src="/images/spacer.gif" alt="" width="10" height="1" border="0">' + caption + '<br>');
	imgwin.document.writeln('</td>');
	imgwin.document.writeln('<td width="50%" valign="middle"><img src="/images/spacer.gif" alt="" width="1" height="1" border="0"></td>');
	imgwin.document.writeln('</tr>');
	imgwin.document.writeln('<tr>');
	imgwin.document.writeln('<td colspan="3" width="100%"><img src="/images/spacer.gif" alt="" width="1" height="1" border="0"></td>');
	imgwin.document.writeln('</tr>');
	imgwin.document.writeln('</table>');
	imgwin.document.writeln('<div class="popupnav" style="margin:12px;width:100px;margin-right:0;"><a href="javascript:window.parent.close();" style="font:bold 8pt Verdana,Arial,Helvetica,sans-serif;">CLOSE</a></div><div style="height:60px"></div></div>');
	imgwin.document.writeln('</body></html>');
	imgwin.document.close();
	if (window.focus) { imgwin.focus(); }
}