    //<![CDATA[

   var geocoder;
   var map;

   var business = "Your Child's Nursery";
   var address = "236 Grote St, Adelaide, Australia";
   var business2 = "Warehouse";
   var address2 = "7 Rosslyn St, Mile End, Australia";
   // On page load, call this function

   function load()
   {
      // Create new map object
      map = new GMap2(document.getElementById("map"));

      // Create new geocoding object
      geocoder = new GClientGeocoder();

      // Retrieve location information, pass it to addToMap()
      geocoder.getLocations(address2, addToMap);      		        
      geocoder.getLocations(address, addToMap);
      
      // Add small zoom control
      map.addControl(new GSmallZoomControl());
      
      // Add map type control
	  map.addControl(new GMapTypeControl());

   }

   // This function adds the point to the map

   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, 15);

      // Create a marker
      marker = new GMarker(point);
	  
      // Add the marker to map
      map.addOverlay(marker);

      // Add address information to marker
      marker.openInfoWindowHtml('<strong>' + business + '</strong>' + '<br />' + address);
       }

    //]]>