/*************************************************************************** IE Hires Fix ***********/

function fnScaleFactorX() {
	var nScaleFactor = screen.deviceXDPI / screen.logicalXDPI;
	if (nScaleFactor == 1.25) {
		if (document.getElementById("thumbs") != null) {
			var arrThumImages = document.getElementById("thumbs").getElementsByTagName("img");
			for (i=0; i<arrThumImages.length; ++i) {
				thisImg = arrThumImages[i]
				thisImg.width=87;
				thisImg.height=87;
			}
		}
		if (document.getElementById("gallery") != null) {
			document.getElementById("gallery").style.pixelWidth=240;
		}
	}
}

if (document.getElementById || document.all || document.layers) {
    window.onload = fnScaleFactorX;
}

/****************************************************************************************************/
