function map_1() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('map_1')) return false;
    var map = new GMap2(document.getElementById('map_1'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallMapControl());
    map.addControl(new GScaleControl());
    map.addControl(new GMapTypeControl());
    map.addControl(new GOverviewMapControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Google Traditional (flat)';
    var markerColor = 'Pacifica';
    icon.image = 'http://maps.google.com/mapfiles/kml/pal2/icon11s.png';
    icon.shadow = 'http://maps.google.com/mapfiles/kml/pal2/icon11.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://maps.google.com/mapfiles/kml/pal2/icon11s.png';
    icon.mozPrintImage = 'http://maps.google.com/mapfiles/kml/pal2/icon11.png';
    icon.printShadow = 'http://maps.google.com/mapfiles/kml/pal2/icon11s.png';
    icon.transparent = 'http://maps.google.com/mapfiles/kml/pal2/icon11.png';

    var address_0 = {
      street: '6411 S. Farm Road 115',
      city: 'Battlefield',
      state: 'MO',
      zip: '65619',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<div style="width:240px"><h3>Wilson Creek Baptist Church</h3><p>6411 S. Farm Road 115<br />Battlefield, MO 65619</p><a href="http://maps.google.com/maps?f=q&hl=en&q=6411+S.+Farm+Road+115+battlefield,+mo+65619&sll=37.0625,-95.677068&sspn=31.839416,82.265625&layer=&ie=UTF8&z=13&ll=37.098592,-93.389583&spn=0.062571,0.21698&om=1" target="_blank">Get Directions</a></div>',
      full: '6411 S. Farm Road 115, Battlefield, MO 65619',
      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.098700,-93.391500), 13);
        }
      }
    );

  }
}