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 GSmallMapControl());
    map.addControl(new GMapTypeControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    icon.image = 'http://www.scfestivalofflowers.org/icon/business.png';
    icon.shadow = 'http://www.scfestivalofflowers.org/icon/business_s.png';
    icon.iconSize=new GSize(32,32);
    icon.shadowSize=new GSize(56,32);
    icon.iconAnchor = iconAnchor=new GPoint(16,32);
    icon.infoWindowAnchor=new GPoint(16,0);

    var address_0 = {
      street: '1610 Highway 72, 221 East',
      city: 'Greenwood',
      state: 'SC',
      zip: '29646',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Civic Center</strong><br />1610 Highway 72, 221 East<br />Greenwood, SC 29646</span>',
      full: '1610 Highway 72, 221 East, Greenwood, SC, 29646',
      isdefault: false
    };
    
    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);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_1 = {
      street: '419 Main Street',
      city: 'Greenwood',
      state: 'SC',
      zip: '29646',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Countybank Plaza</strong><br />419 Main Street<br />Greenwood, SC 29646</span>',
      full: '419 Main Street, Greenwood, SC, 29646',
      isdefault: false
    };
    
    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);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_2 = {
      street: '120 Main St',
      city: 'Ninety Six',
      state: 'SC',
      zip: '29666',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Ninety-Six Town Park</strong><br />120 Main St<br />Ninety Six, SC 29666</span>',
      full: '120 Main St, Ninety Six, SC, 29666',
      isdefault: false
    };
    

    var address_3 = {
      street: '104 East Court Ave',
      city: 'Greenwood',
      state: 'SC',
      zip: '29646',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Uptown Greenwood Fountain</strong><br>near Inn on the Square<br><br />104 East Court Ave<br />Greenwood, SC 29646</span>',
      full: '104 East Court Ave, Greenwood, SC, 29646',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_3.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_3.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_4 = {
      street: '320 Stanley Ave',
      city: 'Greenwood',
      state: 'SC',
      zip: '29649',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Lander Cultural Center</strong><br />320 Stanley Ave<br />Greenwood, SC 29649</span>',
      full: '320 Stanley Ave, Greenwood, SC, 29649',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_4.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_4.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_4.infowindowtext);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

  }
}

