function wagt_map_8() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_8')) return false;
    var map = new GMap2(document.getElementById('wagt_map_8'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GLargeMapControl());
    map.addControl(new GMapTypeControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Star';
    var markerColor = 'Desert Spice';
    icon.image = 'http://google.webassist.com/google/markers/star/desertspice.png';
    icon.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon.iconSize = new GSize(29,39);
    icon.shadowSize = new GSize(29,39);
    icon.iconAnchor = new GPoint(15,15);
    icon.infoWindowAnchor = new GPoint(19,7);
    icon.printImage = 'http://google.webassist.com/google/markers/star/desertspice.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/star/desertspice_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/star/desertspice_transparent.png';

    var address_0 = {
      street: '2375 Avenue Watt',
      city: 'Quebec',
      state: 'Quebec',
      zip: 'G1P 3X2',
      country: 'Canada',
	  infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Groupe Bedard Qu&eacute;bec</strong><br />2375 Avenue Watt<br />Qu&eacute;bec, Qu&eacute;bec G1P 3X2<br /><br />Directions: <a href="http://maps.google.com/maps?f=d&hl=en&saddr=&daddr=2375+av.+watt,+quebec,+quebec,+g1p+3x2&layer=&sll=49.940327,-97.183095&sspn=0.019389,0.040169&ie=UTF8&z=16&om=1&iwloc=addr" target="_blank">Vers</a> | <a href="http://maps.google.com/maps?saddr=2375+Avenue+Watt,+Qu%C3%A9bec,+QC,+Canada&daddr=&f=li&hl=en&sll=46.79094,-71.294372&sspn=0.010313,0.027122&layer=&ie=UTF8&z=16&om=1&iwloc=addr" target="_blank">D&acute;ici</a></span>',
      full: '2375 Avenue Watt, Quebec, Quebec, G1P 3X2, Canada',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_0.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_0.infowindowtext);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

  }
}