function wagt_map_27() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_27')) return false;
    var map = new GMap2(document.getElementById('wagt_map_27'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallMapControl());
    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: '46385 Continental Dr',
      city: 'Chesterfield',
      state: 'MI',
      zip: '48047',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Shelter Distribution<br /> Chesterfield </strong><br />6385 Continental Dr.<br />Chesterfield, MI, 48047<br /><br /><a href="Chesterfield.html"><strong>Visit This Location</strong></a></span>',
      full: '46385 Continental Dr, Chesterfield, MI, 48047',
      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: '6032 Schooner Dr',
      city: 'Belleville',
      state: 'MI',
      zip: '48111',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Shelter Distribution<br /> Belleville </strong><br />6032 Schooner Dr.<br />Belleville, MI, 48111<br /><a href="Belleville.html"><strong>Visit This Location</strong></a></span>',
      full: '6032 Schooner Dr, Belleville, MI, 48111',
      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: '26641 Coolidge Hwy',
      city: 'Oak Park',
      state: 'MI',
      zip: '48237',
      country: '',
      infowindow: 'default',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Address:</strong><br />26641 Coolidge Hwy<br />Oak Park, MI 48237</span>',
      full: '26641 Coolidge Hwy, Oak Park, MI, 48237',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_2.full,
      function(point) {
        if(point) {
          map.setCenter(point, 9);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 6);
        }
      }
    );

  }
}
