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 GSmallZoomControl());
    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(7,2);
    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_6 = {
      street: '26908 Detroit Road, Suite 200',
      city: 'Westlake',
      state: 'Ohio',
      zip: '44145',
      country: '',
      infowindow: 'default',
      infowindowtext: '<p><strong>Westlake</strong> <a href="http://www.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=26908+Detroit+Road,+Suite+200,+Westlake,+OH&sll=41.493154,-82.017554&sspn=0.012199,0.027874&ie=UTF8&z=16&iwloc=A"><img src="/images/map__arrow.png" width="16" height="16" alt="Driving Directions" title="Get Driving Directions or See A Larger Map" /></a><br />26908 Detroit Road<br />Westlake, Ohio 44145</p>',
      full: '26908 Detroit Road, Suite 200, Westlake, Ohio, 44145',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_6.full,
      function(point) {
        if(point) {
          map.setCenter(point, 11);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_6.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_6.infowindowtext);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

  }
}
