function zoomImage ( imgURL, imgTitle, width, height )
{	var isMac = navigator.appVersion.lastIndexOf("Macintosh") != -1;
	if (isMac)
	{	if (typeof width != 'undefined')
		{	zw=open(imgURL,"zmwin","width="+w+",height="+h+",resizable,scrollbars=1");
		} else
		{	zw=open(imgURL,"zmwin","resizable,scrollbars=1");
		}
	} else {
		remote = window.open("","x","width=300,height=150,resizable=yes");
		remote.location.href = "zoomfram.html?"+imgURL+"&"+escape(imgTitle);
		if (remote.opener == null) remote.opener = window;
		remote.focus()
	}
}
