function wagt_map_4() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_4')) return false;
    var map = new GMap2(document.getElementById('wagt_map_4'));
    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/healthcare.png';
    icon4.shadow = 'http://www.scfestivalofflowers.org/icon/healthcare_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: '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: 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: '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>Inn on the Square</strong><br />104 East Court Ave<br />Greenwood, SC 29646</span>',
      full: '104 East Court Ave, Greenwood, SC, 29646',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_1.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon2);
          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: '1816 Cokesbury Rd',
      city: 'Greenwood',
      state: 'SC',
      zip: '29649',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Greenwood High School</strong><br />1816 Cokesbury Rd<br />Greenwood, SC 29649</span>',
      full: '1816 Cokesbury Rd, Greenwood, SC, 29649',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_2.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon3);
          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: '1325 Spring Street',
      city: 'Greenwood',
      state: 'SC',
      zip: '29646',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Nisbet Education Center<br>Self Regional Healthcare</strong><br />1325 Spring Street<br />Greenwood, SC 29646</span>',
      full: '1325 Spring Street, Greenwood, SC, 29646',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_3.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon4);
          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: '409 Emerald Farm Rd',
      city: 'Greenwood',
      state: 'SC',
      zip: '29646',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Emerald Farm</strong><br />409 Emerald Farm Rd<br />Greenwood, SC 29646</span>',
      full: '409 Emerald Farm Rd, 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: '3507 Cokesbury Rd',
      city: 'Hodges',
      state: 'SC',
      zip: '39653',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Park Seed Company</strong><br />3507 Cokesbury Rd<br />Hodges, SC 39653</span>',
      full: '3507 Cokesbury Rd, Hodges, SC, 39653',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_5.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon3);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_5.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_6 = {
      street: '304 Durst Ave ',
      city: 'Greenwood',
      state: 'SC',
      zip: '29649',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Lander University President\'s Home</strong><br />304 Durst Ave <br />Greenwood, SC 29649</span>',
      full: '304 Durst Ave, Greenwood, SC, 29649',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_6.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon3);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_6.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_6.infowindowtext);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_7 = {
      street: '1110 Marshall Rd',
      city: 'Greenwood',
      state: 'SC',
      zip: '29646',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Wesley Commons</strong><br />1110 Marshall Rd<br />Greenwood, SC 29646</span>',
      full: '1110 Marshall Rd, Greenwood, SC, 29646',
      isdefault: false
    };

    geocoder.getLatLng (
      address_7.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon3);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_7.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );


  }
}

