function zoomView(imgid,caption)
{
	var oZoom = document.getElementById('zoom-view');
	var oZoomImgThumb = document.getElementById(imgid);
	var oZoomImg = document.getElementById('zoom-image');
	oZoom.style.display = 'block';
	oZoomImg.src = oZoomImgThumb.src.replace('thumb_','');
	oZoomImg.title = oZoomImgThumb.alt = caption;
}

