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_1 = {
      street: '34960 Center Ridge Road',
      city: 'North Ridgeville',
      state: 'Ohio',
      zip: '44039',
      country: '',
      infowindow: 'default',
      infowindowtext: '<p><strong>North Ridgeville</strong> <a href="http://www.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=34960+Center+Ridge+Road,+North+Ridgeville,+OH&sll=41.452273,-82.031719&sspn=0.012207,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 />34960 Center Ridge Road<br />North Ridgeville, Ohio 44039</p>',
      full: '34960 Center Ridge Road, North Ridgeville, Ohio, 44039',
      isdefault: true
    };
    
    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);
		  marker.openInfoWindowHtml(address_1.infowindowtext);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );


  }
}
