    function load() {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
//map.addControl(new GMapTypeControl());
geocoder = new GClientGeocoder();
showAddress(adtext);
        
      }
    }

    function showAddress(address) {
var Icon = icone(); 
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " not found");
            } else {
              map.setCenter(point, 17);
              var marker = new GMarker(point, {icon:Icon, clickable:false});
              map.addOverlay(marker);
              marker.openInfoWindowHtml(adtexthtml);
            }
          }
        );
      }
    }

function icone() {
		var Icon = new GIcon();
    		Icon.image 	= "/icones/t-thermes.gif";
		Icon.iconSize 			= new GSize(13, 13);
		Icon.iconAnchor 		= new GPoint(13, 5);
		Icon.infoWindowAnchor 	= new GPoint(10, 10);
		Icon.shadow 			= "/icones/hotel.gif";
		Icon.shadowSize 		= new GSize(13, 13);
		return Icon;
	}

