/*********************************************************************
These functions are used to show a popup image when a link is clicked
**********************************************************************/

		function showCloseupImg(imgInsertLocation, imgPath)
		{	var imgExtractLoc = imgInsertLocation;

			document.getElementById(imgInsertLocation).innerHTML=
		          '<div style="padding:10px; position:absolute; right:10px;" onmouseover="this.style.cursor=\'hand\';" onclick="hideCloseupImg(\'' + imgExtractLoc +'\');">Close X</div> \
				   <div style="padding:50px; background-color:white; border:#999999 thin solid;"><img src=' + imgPath + ' alt=""/>';
		}
		function hideCloseupImg(imgExtractLocation)
		{	document.getElementById(imgExtractLocation).innerHTML='';
		}