function zoom(that, width, height) {
	winwidth = width + 20
	winheight = height + 20
	wintop = (screen.height - winheight) / 2
	winleft = (screen.width - winwidth) / 2
	attr = 'top=' + wintop + ',left=' + winleft + ',width=' + winwidth + ',height=' + winheight
	html = '<html><head><title>Click To Close</title><body style="border:0px;margin:10px;padding:0px">'
	html += '<a href="#" onclick="self.close()" title="Click To Close">'
	html += '<img src="' + that.href + '" width="' + width + '" height="' + height + '" border="0" alt="Click To Close" /></a>'
	html += '</body></html>'
	image = window.open('', 'image', attr)
	image.document.write(html)
	image.document.close()
	return false
}
