function replaceImageAndZoom(imgName, zoomName, fSize, imgFile) {
		document.getElementById(zoomName).href = "/itemimages/" + imgFile;
		replaceImage(imgName, fSize, imgFile);
	}
	
function showLightWindow(iUrl,iTitle,iWidth,iHeight){
		if (iTitle.length > 40)	{
			iTitle = iTitle.substring(0,40);
		}
		//  Create the lightwindow
		myLightWindow.activateWindow({
			href: iUrl,
			type: 'page',
			title: iTitle,
			width: iWidth,
			height: iHeight
		});
	}
