<!--

// code to open window to view bigger image		
function PopUpImg(src,w,h) {
	neww = w * 1.05
	newh = h * 1.1
	var nTop, nLeft;
	nTop = (window.screen.height - newh - 40) / 2; //40 Title and Status
	nLeft = (window.screen.width - neww - 6) / 2;
	newWindow = window.open('PopUpGallery.aspx?Height=' + h + '&Width=' + w + '&Src=' + src,'popImage',"top=" + nTop + ", left=" + nLeft + ", status=yes,resizable=yes,Height=" + newh + ",Width=" + neww)
	newWindow.focus();
	}
// -->