/**
 * @author iaan from Afrigis and Vincent from Vodacom
 */
		 
		 function initImagery()
		 {
		   //Move the map buttons into position
		   var oBtns = document.getElementById("MapControlButtons");
		   document.getElementById("MapPanel").appendChild(oBtns);
		   
		   //Make visible
		   oBtns.style.visibility="visible";  
				 	
		 }
		 
		 function DisplayImagey()
		 {
            agmap.hideDefaultMap();
            agmap.showImagery();
    	    if(document.getElementById("radShowHybrid").checked)
		    {
                agmap.showDefaultMapForImagery();	
		    }
		    else
		    {
		        agmap.hideDefaultMapForImagery();
		    }
		    
		    agmap.resize();
		    map_type = "Imagery";
			
			document.getElementById("dvBtnImagery").className = "MapButtonsSelected ui-corner-all";
			document.getElementById("dvBtnDisplayMap").className = "MapButtons ui-corner-all";
					    
		   
		 }
		 
		 function DisplayMap()
		 {
		    agmap.hideImagery();
		    agmap.hideDefaultMapForImagery();
		    agmap.showDefaultMap();
		    agmap.resize();
		    
			map_type = "Map";

			document.getElementById("dvBtnImagery").className = "MapButtons ui-corner-all";
			document.getElementById("dvBtnDisplayMap").className = "MapButtonsSelected ui-corner-all";	
			
		 }
		 
	function zoomTo(latitude,longitude)
	{
	agmap.centreAndScale(new AGCoord(latitude,longitude), 15);
	}
