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 GMapTypeControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Star';
    var markerColor = 'Desert Spice';
    icon.image = 'http://google.webassist.com/google/markers/star/desertspice.png';
    icon.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon.iconSize = new GSize(29,39);
    icon.shadowSize = new GSize(29,39);
    icon.iconAnchor = new GPoint(15,15);
    icon.infoWindowAnchor = new GPoint(19,7);
    icon.printImage = 'http://google.webassist.com/google/markers/star/desertspice.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/star/desertspice_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/star/desertspice_transparent.png';

    var address_0 = {
      street: '452 Sawmill Dr.',
      city: 'Suwanee',
      state: 'GA',
      zip: '30024',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Dealers Choice<br /> Suwanee </strong><br />452 Sawmill Dr.<br />Suwanee, GA 30024<br /><br /><a href="Suwanee.html"><strong>Visit This Location</strong></a></span>',
      full: '452 Sawmill Dr., Suwanee, GA, 30024',
      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: '210 East Golden Road',
      city: 'Tifton',
      state: 'GA',
      zip: '31794',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Dealers Choice<br /> Tifton </strong><br />210 East Golden Road<br />Tifton, GA 31794<br /><a href="Tifton.html"><strong>Visit This Location</strong></a></span>',
      full: '210 East Golden Road, Tifton, GA, 31794',
      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: '2524 2nd Street West',
      city: 'Birmingham',
      state: 'AL',
      zip: '35204',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Dealers Choice<br /> Birmingham </strong><br />2524 2nd Street West<br />Birmingham, AL 35204<br /><a href="Birmingham.html"><strong>Visit This Location</strong></a></span>',
      full: '2524 2nd Street West, Birmingham, AL, 35204',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_2.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          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: '1096 Fifth St.',
      city: 'Florala ',
      state: 'AL',
      zip: '16442',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Sun/Belt Supply<br /> Florala</strong><br />1096 Fifth St.<br />Florala, AL 16442<br /><a href="Florala.html"><strong>Visit This Location</strong></a></span>',
      full: '1096 Fifth St., Florala, AL, 16442',
      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: '403 Highway 74 North',
      city: 'Peachtree City',
      state: 'GA',
      zip: '30269',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Dealers Choice<br /> Peachtree City</strong><br />403 Highway 74 North<br />Peachtree City, GA 30269<br /><a href="Peachtree_City.html"><strong>Visit This Location</strong></a></span>',
      full: '403 Highway 74 North, Peachtree City, GA, 30269',
      isdefault: false
    };
    
    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);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_5 = {
      street: '325 Eisenhower Dr.',
      city: 'Savannah',
      state: 'GA',
      zip: '31406',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Dealers Choice<br /> Savannah</strong><br />325 Eisenhower Dr.<br />Savannah, GA 31406<br /><a href="Savannah.html"><strong>Visit This Location</strong></a></span>',
      full: '325 Eisenhower Dr., Savannah, GA, 31406',
      isdefault: false
    };
    
    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);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_6 = {
      street: '403 Highway 74 North',
      city: 'Peachtree City',
      state: 'GA',
      zip: '30269',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Dealers Choice<br /> Peachtree City</strong><br />403 Highway 74 North<br />Peachtree City, GA 30269<br /><a href="Peachtree_City.html"><strong>Visit This Location</strong></a></span>',
      full: '403 Highway 74 North, Peachtree City, GA, 30269',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_6.full,
      function(point) {
        if(point) {
          map.setCenter(point, 6);
          var marker = new GMarker(point, icon);
          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), 6);
        }
      }
    );

  }
}