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 GScaleControl());
    map.addControl(new GMapTypeControl());
    map.addControl(new GOverviewMapControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Google Traditional (pillow)';
    var markerColor = 'Cabo Sunset';
    //icon.image = 'http://google.webassist.com/google/markers/traditionalpillow/cabosunset.png';
	icon.image = 'graphics/nmsoicon-20x20purple.png';
    icon.shadow = 'http://google.webassist.com/google/markers/traditionalpillow/shadow.png';
    icon.iconSize = new GSize(20,20);
    icon.shadowSize = new GSize(34,35);
    icon.iconAnchor = new GPoint(10,12);
    icon.infoWindowAnchor = new GPoint(19,0);
    icon.printImage = 'http://google.webassist.com/google/markers/traditionalpillow/cabosunset.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalpillow/cabosunset_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalpillow/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalpillow/cabosunset_transparent.png';

    var address_0 = {
      street: '10960 George Mason Circle',
      city: 'Manassas',
      state: 'VA',
      zip: '20110',
      country: 'US',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 10px Verdana, Arial, Helvetica, sans-serif; color: #000;"><img width="10" height="10" src="graphics/nmsoicon-10x10.png">&nbsp;<strong>NMSO Concert Location</strong><br/>Hylton Performing Arts Center<br />10960 George Mason Circle<br />Manassas, VA 20110 US</span>',
      full: '10960 George Mason Circle, Manassas, VA, 20110, US',
      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(38.757597,-77.523909), 13);
        }
      }
    );
  }
}