function zoomPopup(img)
{
	var sUrl="Zoom.aspx?img=" + escape(img);
	var w = window.open(sUrl, "ZoomPopUp"+Math.floor(Math.random()*99999), "width=640,height=480");
	w.focus();
}
