function wagt_map_2() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_2')) return false;
    var map = new GMap2(document.getElementById('wagt_map_2'));
    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/golf.png';
    icon.shadow = 'http://www.scfestivalofflowers.org/icon/golf_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 icon2 = new GIcon();
    icon2.image = 'http://www.scfestivalofflowers.org/icon/house.png';
    icon2.shadow = 'http://www.scfestivalofflowers.org/icon/house_s.png';
    icon2.iconSize=new GSize(32,32);
    icon2.shadowSize=new GSize(56,32);
    icon2.iconAnchor = iconAnchor=new GPoint(16,32);
    icon2.infoWindowAnchor=new GPoint(16,0);
	
	var icon3 = new GIcon();
    icon3.image = 'http://www.scfestivalofflowers.org/icon/business.png';
    icon3.shadow = 'http://www.scfestivalofflowers.org/icon/business_s.png';
    icon3.iconSize=new GSize(32,32);
    icon3.shadowSize=new GSize(56,32);
    icon3.iconAnchor = iconAnchor=new GPoint(16,32);
    icon3.infoWindowAnchor=new GPoint(16,0);
	
	var icon4 = new GIcon();
    icon4.image = 'http://www.scfestivalofflowers.org/icon/tree.png';
    icon4.shadow = 'http://www.scfestivalofflowers.org/icon/tree_s.png';
    icon4.iconSize=new GSize(32,32);
    icon4.shadowSize=new GSize(56,32);
    icon4.iconAnchor = iconAnchor=new GPoint(16,32);
    icon4.infoWindowAnchor=new GPoint(16,0);

    var address_0 = {
      street: '2816 Golf Course Rd',
      city: 'Ninety-Six',
      state: 'SC',
      zip: '29666',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>The Fort at Ninety-Six</strong><br />2816 Golf Course Rd<br />Ninety-Six, SC 29666</span>',
      full: '2816 Golf Course Rd, Ninety-Six, SC, 29666',
      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: '101 Grand Harbor Blvd',
      city: 'Ninety-Six',
      state: 'SC',
      zip: '29666',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>The Patriot at Grand Harbor</strong><br />101 Grand Harbor Blvd<br />Ninety-Six, SC 29666</span>',
      full: '101 Grand Harbor Blvd, Ninety-Six, SC, 29666',
      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: '302 State Park Rd',
      city: 'Ninety-Six',
      state: 'SC',
      zip: '29666',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Greenwood State Park</strong><br />302 State Park Rd<br />Ninety-Six, SC 29666</span>',
      full: '302 State Park Rd, Ninety-Six, SC, 29666',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_2.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon4);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_2.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_3 = {
      street: '810 Maxwell Ave',
      city: 'Greenwood',
      state: 'SC',
      zip: '29646',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Connie Maxwell Children\'s Home</strong><br />810 Maxwell Ave<br />Greenwood, SC 29646</span>',
      full: '810 Maxwell Ave, Greenwood, SC, 29646',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_3.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon2);
          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: '110 Phoenix Street',
      city: 'Greenwood',
      state: 'SC',
      zip: '29646',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Greenwood Area Chamber of Commerce</strong><br />110 Phoenix Street<br />Greenwood, SC 29646</span>',
      full: '110 Phoenix Street, Greenwood, SC, 29646',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_4.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon3);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_4.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_5 = {
      street: '607 Cambridge Ave West',
      city: 'Greenwood',
      state: 'SC',
      zip: '29649',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Greenwood Country Club</strong><br />607 Cambridge Ave West<br />Greenwood, SC 29649</span>',
      full: '607 Cambridge Ave West, Greenwood, SC, 29649',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_5.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_5.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_5.infowindowtext);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_6 = {
      street: '421 Hwy 221 South',
      city: 'Greenwood',
      state: 'SC',
      zip: '29646',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Greenwood County Fairgrounds</strong><br />421 Hwy 221 South<br />Greenwood, SC 29646</span>',
      full: '421 Hwy 221 South, Greenwood, SC, 29646',
      isdefault: false
    };

    geocoder.getLatLng (
      address_6.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon4);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_6.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

  }
}

