    function showModalImage()
	{
		    showPhotoinModalPopup('images/Bangalore07.jpg')
		}
		
		function showPhotoinModalPopup(imagename,picname)
		{
		//	alert('reading '+picname);
		//var xmlFile=document.getElementById('hidXML').value;
		 
		document.getElementById('blurImageDiv').style.display="block";
		document.getElementById('blurImageDiv').style.height=document.body.scrollHeight +"px";
		document.getElementById('blurImageDiv').style.width=document.body.scrollWidth + "px";
		document.getElementById('ImageModalDiv').style.display="block";
        UpdateDivWithImageName(imagename,picname);

		//--------Finding left position of flash--------------------------
		var twidth=document.getElementById('blurImageDiv').scrollWidth;
		var flashwidth= 640;       //document.getElementById('ImageModalDiv').scrollWidth;
		var diffwidth=twidth-flashwidth;
		var leftwidth=0;
		if(diffwidth>0)
		{leftwidth=diffwidth/2;
		}
		
		//-----------------------------------------------------------------

		//-------Finding Top position of flash----------------------------
		var theight=document.documentElement.clientHeight;
		var flashHeight=480; //document.getElementById('ImageModalDiv').scrollHeight;
		var diffHeight=theight-flashHeight;
		var flashTop=0;
		if(diffHeight>0)
		{flashTop=diffHeight/2};		
		
		
		//-----------------------------------------------------------------
		
		document.getElementById('ImageModalDiv').style.top=document.documentElement.scrollTop +flashTop + "px";
		document.getElementById('ImageModalDiv').style.left=leftwidth + "px";
	}
		
		
	function hidePhotoFromModalPopup()
	{
		document.getElementById('blurImageDiv').style.display="none";
		document.getElementById('ImageModalDiv').style.display="none";
	}
		
	function UpdateDivWithImageName(imagename,picname)
	{
		var strObj = "<table><tr><td align='right'><a href='Javascript:hidePhotoFromModalPopup();'><img src='images/closewindow.gif' border='0'></a></td></tr>";
		
		    strObj+= "<tr><td><img id='idlarge' src='"+imagename+"' border=0/></td></tr>";
		    
		    if(picname!='undefined')
			strObj+= "<tr><td align=center class='modal_title'>"+picname+"</td></tr>";
			
			strObj+="</table>";
		document.getElementById('ImageModalDiv').innerHTML=strObj;
	}
		 
