var ZoomedImageWindow;
var ZoomTitles	= new Array();
function zoomImage(url, width, height, title)
{

	zoomImageClose();
	ZoomTitles[url]		= title;
	ZoomedImageWindow	= window.open(url, "ZoomImage", "top=0, left=0, width="+width+", height="+height);
	ZoomedImageWindow.focus();
	
	
	
	event.returnValue=false;
	return false;

}

function zoomImageClose()
{
	if (ZoomedImageWindow) ZoomedImageWindow.close();

}
window.attachEvent('onunload', zoomImageClose);
