function wagt_map_3() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_3')) return false;
    var map = new GMap2(document.getElementById('wagt_map_3'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallMapControl());
    map.addControl(new GMapTypeControl());
    map.setMapType(G_HYBRID_MAP);
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Google Traditional (flat)';
    var markerColor = 'Pacifica';
    icon.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon.iconSize = new GSize(34,35);
    icon.shadowSize = new GSize(34,35);
    icon.iconAnchor = new GPoint(9,23);
    icon.infoWindowAnchor = new GPoint(19,0);
    icon.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';

    var address_21 = {
      street: '1, route de Tournan',
      city: 'Jossigny',
      state: '-',
      zip: '77600',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<div style="width: 200px;"><span style="font: 10px Verdana, Arial, Helvetica, sans-serif; color: #000; align: left;" width="100"><img src="../coupvray/thumbs75/2334_Lavoir_Haut_Coupvray.jpg" width="75" height="75" border="0" align="left" hspace="3" vspace="3"><a href="../coupvray/lavoir-du-haut.html"><b>Lavoir du Haut</b></a> - <b>Coupvray</b><br />Egalement appel&eacute; Lavoir des m&eacute;disances, le Lavoir du Haut &agrave; Coupvray date [...]</span></div>',
      full: '1, route de Tournan, Jossigny, -, 77600',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_21.full,
      function(point) {
        point = new GLatLng(48.890543349343496, 2.7925336360931396);
        if(point) {
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_21.infowindowtext);
          });
          map.addOverlay(marker);
          point = new GLatLng(48.86855408432749, 2.7297592163085938);
          map.setCenter(point, 11);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

  }
}



