function img_zoom(prcode)
{
		var full_link = 'http://silverfish.com/Merchant5/' + prcode;
		zoom_image = window.open('','',"menubar=0,height=500,width=900,toolbar=0,statusbar=0,directories=0,scrollbars=0");
		zoom_image.document.write('<html><head><title>Silverfish</title></head><body bgcolor="#FFFFFF" link="#333366" alink="#333366" vlink="#333366" text="#333366" style="font: 12px Verdana, Geneva, sans-serif; margin: 0; padding: 0;"><div style="width:450px; height: 450px; text-align: center; vertical-align: center; margin: 10px;"><img src = "'+ full_link+'"></div>');
		zoom_image.document.write("<div align=center><a href = '' onclick = 'self.close();'>close window</a></div></body></html>");
		zoom_image.document.close();
}

