<!-- hide from old browsers

function openWin(width, height, pic) {
		picWin = open("", "newWin", "width=" + width + ",height=" + height + ",scrollbars=0,resizable=0");
		picWin.document.open();
		picWin.document.clear();
		picWin.document.writeln("<html><body topmargin=0 leftmargin=0><table width=\"100%\" height=\"100%\" cellpadding=0 cellspacing=0 border=0><tr><td valign=\"center\" align=\"center\"><a href=\"javascript:window.close()\"><img src=\"products/" + pic + "\" border=0 alt=\"Click image to close this window\"></a></td></tr></table></body></html>");
		picWin.document.close();
}
//-->