function wenlarge(prodname, inset, image)	{
	w1=window.open('','w1','width=675,height=620,menubar=no,toolbar=no,directories=no,resizable=no,scrollbars=no,location=no,status=no');
	w1.document.open();
	w1.document.write("<html><head><title>Product Images</title></head>");
	w1.document.write("<body>");
	var new_inset = inset.split(", ");
	var new_image = image.split(", ");
	w1.document.write ('<div style="text-align: center; font-size: 16px; font-weight: bold; font-family: arial; margin: 15px 0 15px 0;">'+prodname+'</div>');
	w1.document.write ('<div style="width: 650px; margin-left: auto; margin-right: auto;"><div style="height: 450px; border: solid 1px #999999; text-align: center;">');
	w1.document.write ('<img src="'+new_image[0]+'" id="mainimage" />');
	w1.document.write ('</div></div>');
	w1.document.write ('<div style="width: 650px; margin-left: auto; margin-right: auto;"><div style="padding: 5px; auto; font-size: 11px; font-family: arial; color: #555555; border-bottom: solid 1px #999999; border-right: solid 1px #999999; border-left: solid 1px #999999;">');
	w1.document.write ('Other Views - Click thumbnail to change view.');
	for (i=0;i<new_inset.length;i++)
		{
			w1.document.write ('<div style="float: left; margin-right: 10px; width: 45px; height: 45px; border: solid 1px #999999; text-align: center; margin-top: 3px;">');
			w1.document.write ('<img src="'+new_inset[i]+'" onclick="document.getElementById(\'mainimage\').src = \''+new_image[i]+'\';" />');
			w1.document.write ('</div>');
		}
	w1.document.write ('<div style="clear: both;"></div>');
	w1.document.write ('</div></div>');
	w1.document.write('<div style="text-align: center; margin-top: 10px; font-size: 11px; font-family: arial;"><a href="javascript:window.close();">close window</a></body></html>');
}

