function wagt_map_1() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_1')) return false;
    var map = new GMap2(document.getElementById('wagt_map_1'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GLargeMapControl());
    map.addControl(new GMapTypeControl());
    map.addControl(new GOverviewMapControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Flag';
    var markerColor = 'Pacifica';
    icon.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon.iconSize = new GSize(31,35);
    icon.shadowSize = new GSize(31,35);
    icon.iconAnchor = new GPoint(4,27);
    icon.infoWindowAnchor = new GPoint(8,3);
    icon.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/flag/pacifica_transparent.png';

    var address_0 = {
      street: '403 Logan Street',
      city: 'Davenport',
      state: 'Washington',
      zip: '99122',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<p><span class="mainTextStyle"><br />Pioneer Title Company<br />403 Logan Street<br />Davenport, Washington 99122<br /><strong><a  href="http://maps.google.com/maps?q=403+Logan+Street,+Davenport,+WA+99122,+USA&sa=X&oi=map&ct=title">Directions to here</a></strong></span></p>',
      full: '403 Logan Street, Davenport, Washington, 99122',
      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);
        }
      }
    );

  }
}