//<![CDATA[

    var geocoder;
	var map;

   	var address = "3595 RR 620 South, Austin, TX, 78738";

    function load()
   	{
      // Create new map object
      map = new GMap2(document.getElementById("map"));
      // Create new geocoding object
      geocoder = new GClientGeocoder();
	  map.addControl(new GSmallZoomControl());
      // Retrieve location information, pass it to addToMap()
      geocoder.getLocations(address, addToMap);
   	}
   	function addToMap(response)
   	{
      // Retrieve the object
      place = response.Placemark[0];
      // Retrieve the latitude and longitude
      point = new GLatLng(place.Point.coordinates[1],place.Point.coordinates[0]);
      // Center the map on this point
      map.setCenter(point, 13);
      // Create a marker
      marker = new GMarker(point);
      // Add the marker to map
      map.addOverlay(marker);
      // Add address information to marker
      marker.openInfoWindowHtml("<h3 class='mapheader'>Grace Outreach Family Church</h3><b>Across from Home Depot</b><br /><br /><a href='fullmap.html'>View full-screen map here &raquo;</a>");
   	}
    //]]>