<!--
function openPictureWindow(imageName) {
	newWindow = window.open("","cuWindow","width=600,height=630,left=50,top=50");
	newWindow.document.open();
	newWindow.document.write('<html><title>Product Closeup</title>'); 	
	newWindow.document.write('<meta http-equiv="Content-Type" content="text/html; charset=">');
	newWindow.document.write('<style type="text/css">');
	newWindow.document.write('<!--');
	newWindow.document.write('font {  font-family: Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; font-weight: normal}');
	newWindow.document.write('--></style></HEAD>');
	newWindow.document.write('<BODY BGCOLOR="#FFFFFF" link="#CCCCCC" vlink="#777777" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0" onBlur="self.close()">'); 
	newWindow.document.write('<table width="100%" border="0" height="100%"><tr align="center" valign="middle">');
	newWindow.document.write('<td width="100%"><img src="'+imageName+'" ></td>');
	newWindow.document.write('</tr><tr><td><div align="center"><font color="#CCCCCC"><a href=javascript:close()>Close this window</a></font></div></td></tr>');
	newWindow.document.write('</table></BODY></HTML>');
	newWindow.document.close();
	newWindow.focus();
}
//-->
