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 GLargeMapControl());
    map.addControl(new GMapTypeControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Push-Pin';
    var markerColor = 'Moab';
    icon.image = 'http://google.webassist.com/google/markers/pushpin/moab.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/moab.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/pushpin/moab_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/pushpin/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/pushpin/moab_transparent.png';

    var address_0 = {
      street: '1411 Fillmore Street',
      city: 'Twin Falls',
      state: 'ID',
      zip: '83301',
      country: '',
      infowindow: 'default',
      infowindowtext: '<p class="body_copy"><strong>Land Title and Escrow, Inc.</strong><br />1411 Fillmore Street<br />Twin Falls, Idaho 83301<br /><a href="http://maps.google.com/maps?q=1411+Fillmore+Street,+Twin+Falls,+ID+83301,+USA&sa=X&oi=map&ct=title">Directions to here</a><p></p></p>',
      full: '1411 Fillmore Street, Twin Falls, ID, 83301',
      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);
        }
      }
    );

  }
}