
function wagmp_map_1() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagmp_map_1')) return false;
    var map = new GMap2(document.getElementById('wagmp_map_1'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GLargeMapControl());
    map.addControl(new GScaleControl());
    map.addControl(new GMapTypeControl());
    var geocoder = new GClientGeocoder();
    
    var fromAddress = {
      enabled: false,
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      full: ''
    };

    var icon_0 = new GIcon();
    icon_0.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon_0.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon_0.iconSize = new GSize(31,35);
    icon_0.shadowSize = new GSize(31,35);
    icon_0.iconAnchor = new GPoint(4,27);
    icon_0.infoWindowAnchor = new GPoint(8,3);
    icon_0.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon_0.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon_0.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_0.transparent = 'http://google.webassist.com/google/markers/flag/pacifica_transparent.png';
    
    var address_0 = {
      street: '84 Luckie Street NW',
      city: 'Atlanta',
      state: 'GA',
      zip: '30303',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: .84em/.88em Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Theatrical Outfit<br />The Balzer Theater at Herren\'s</strong><br />84 Luckie Street NW<br />Atlanta, GA 30303 USA</span>',
      full: '84 Luckie Street NW, Atlanta, GA, 30303, USA',
      isdefault: true,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Flag',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_0);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_0.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_0' != 'address_0') {
            map.setCenter(point, 13);
			map.setZoom(15);
            map.addOverlay(marker);
            marker.openInfoWindowHtml(address_0.infowindowtext);
          }
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );


  }
}