function ShowLargeImg(divId, imgPath)
{
		//imgPath arg should be relative to root of application
		var div1 = document.getElementById(divId);
		var imgUrl=document.URL.substring(0, document.URL.lastIndexOf('/')+1)+imgPath;
		div1.innerHTML="<img src='"+imgUrl+"'>";
}