function OpenImageWindow(link, title, width, height) {	if (width == undefined) width = 802;	if (height == undefined) height = 602;	window.open(link.href, title, 'width=' + width + ' height=' + height + ' chrome=no');	return false;}