function wagt_map_6() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_6')) return false;
    var map = new GMap2(document.getElementById('wagt_map_6'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallMapControl());
    map.addControl(new GMapTypeControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Push-Pin';
    var markerColor = 'Poppy';
    icon.image = 'http://google.webassist.com/google/markers/pushpin/poppy.png';
    icon.shadow = 'http://google.webassist.com/google/markers/pushpin/shadow.png';
    icon.iconSize = new GSize(40,41);
    icon.shadowSize = new GSize(40,41);
    icon.iconAnchor = new GPoint(7,38);
    icon.infoWindowAnchor = new GPoint(26,4);
    icon.printImage = 'http://google.webassist.com/google/markers/pushpin/poppy.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/pushpin/poppy_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/pushpin/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/pushpin/poppy_transparent.png';

    var address_0 = {
      street: '38 Westgate',
      city: 'Lincoln',
      state: 'Lincolnshire',
      zip: 'LN1 3BD',
      country: 'England',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Address:</strong><br />The Tower Hotel,<br />38 Westgate, Lincoln, <br />Lincolnshire, LN1 3BD, England.</span>',
      full: '38 Westgate, Lincoln, Lincolnshire, LN1 3BD, England',
      isdefault: false
    };
    
    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);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_1 = {
      street: '40-44 Bailgate',
      city: 'Lincoln',
      state: 'Lincolnshire',
      zip: 'LN1 3AP',
      country: 'England',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Address:</strong><br />The Duke William,<br />40-44 Bailgate, Lincoln, <br />Lincolnshire, LN1 3AP, England.</span>',
      full: '40-44 Bailgate, Lincoln, Lincolnshire, LN1 3AP, England',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_1.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_1.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_2 = {
      street: '76 Bailgate',
      city: 'Lincoln',
      state: 'Lincolnshire',
      zip: 'LN1 3AR',
      country: 'England',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Address:</strong><br />County Assembly Rooms,<br />76 Bailgate, Lincoln, <br />Lincolnshire, LN1 3AR, England.</span>',
      full: '76 Bailgate, Lincoln, Lincolnshire, LN1 3AR, England',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_2.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_2.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_2.infowindowtext);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

  }
}