 //<![CDATA[
 function load(address) {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		var geocoder = new GClientGeocoder();
		//map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
		map.addControl(new GLargeMapControl(),
               new GControlPosition(G_ANCHOR_BOTTOM_RIGHT, new GSize(10, 10)));

		  if (geocoder) {
			geocoder.getLatLng(
			  address,
			  function(point) {
				if (!point) {
				  alert(address + " not found");
				} else {
				  map.setCenter(point, 12);
				  var marker = new GMarker(point);
				  map.addOverlay(marker);
				 // marker.openInfoWindowHtml("&quot;Quiete di Caiano&quot;<br>Tel.: +39 0744 957227<br>Fax: +39 0744 956212<br>Cell: +39 336 635283<br>E-mail: <a href='mailto:info@quietedicaiano.it'>info@quietedicaiano.it</a>");
				 // map.panTo(new GLatLng(42.431380, 12.1750023));
				}
			  }
			);
		} // end if geocoder
      } // end if GBrowserIsCompatible
    } // end function load(address)
//]]>
