function WAMapRef(mapObj)  {
  this.obj = mapObj;
  this.directions = false;
  this.icons = [];
  this.markers = [];
  this.addresses = [];
  this.points = [];
  this.getPointByAddress = getPointByAddressFunc;
  return this;
}

function waitForGeo()  {
  var startDate = new Date();
  var endDate = new Date();
  while ((endDate-startDate) < 200)  {
    endDate = new Date();
  }
}

function WAMapPoint(theMarker, theAddress, theIcon)  {
  this.icon = theIcon;
  this.marker = theMarker;
  this.address = theAddress;
  return this;
}

function getPointByAddressFunc(value,attname)  {
  if (!attname) attname = "street";
  for (var x=0; x < this.addresses.length; x++) {
    if (eval("this.addresses[x]."+attname) == value)  {
      return WAMapPoint(this.markers[x],this.addresses[x],this.icons[x]);
    }
  }
  return false;
}


function wagmp_map_1() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagmp_map_1')) return false;
    var map = new GMap2(document.getElementById('wagmp_map_1'));
    wagmp_map_1_obj = new WAMapRef(map);
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallMapControl());
    map.addControl(new GMapTypeControl());
    map.addControl(new GOverviewMapControl());
    var geocoder = new GClientGeocoder();
    
    var fromAddress = {
      enabled: false,
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      full: ''
    };

    var icon_0 = new GIcon();
    icon_0.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon_0.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon_0.iconSize = new GSize(31,35);
    icon_0.shadowSize = new GSize(31,35);
    icon_0.iconAnchor = new GPoint(4,27);
    icon_0.infoWindowAnchor = new GPoint(8,3);
    icon_0.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon_0.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon_0.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_0.transparent = 'http://google.webassist.com/google/markers/flag/pacifica_transparent.png';
    
    var address_0 = {
      street: '1240 Highway 43 North',
      city: 'Axis',
      state: 'AL',
      zip: '36505',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">TF Warren Group<br />1240 Highway 43 North<br />Axis, AL 36505 USA</span>',
      full: '1240 Highway 43 North, Axis, AL, 36505, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Flag',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_0);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_0.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_0' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_0);
          wagmp_map_1_obj.icons.push(icon_0);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_1 = new GIcon();
    icon_1.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon_1.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon_1.iconSize = new GSize(31,35);
    icon_1.shadowSize = new GSize(31,35);
    icon_1.iconAnchor = new GPoint(4,27);
    icon_1.infoWindowAnchor = new GPoint(8,3);
    icon_1.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon_1.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon_1.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_1.transparent = 'http://google.webassist.com/google/markers/flag/pacifica_transparent.png';
    
    var address_1 = {
      street: '8700 Hemley Street',
      city: 'Bayou La Batre',
      state: 'AL',
      zip: '',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Real Ships<br />8700 Hemley Street<br />Bayou La Batre, AL  USA</span>',
      full: '8700 Hemley Street, Bayou La Batre, AL, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Flag',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_1.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_1);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_1.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_1' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_1);
          wagmp_map_1_obj.icons.push(icon_1);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_2 = new GIcon();
    icon_2.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon_2.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon_2.iconSize = new GSize(31,35);
    icon_2.shadowSize = new GSize(31,35);
    icon_2.iconAnchor = new GPoint(4,27);
    icon_2.infoWindowAnchor = new GPoint(8,3);
    icon_2.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon_2.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon_2.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_2.transparent = 'http://google.webassist.com/google/markers/flag/pacifica_transparent.png';
    
    var address_2 = {
      street: '4437 Atlanta Highway',
      city: 'Montgomery',
      state: 'AL',
      zip: '36117',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Marshall Design-Build, LLC<br />4437 Atlanta Highway<br />Montgomery, AL 36117 USA</span>',
      full: '4437 Atlanta Highway, Montgomery, AL, 36117, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Flag',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_2.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_2);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_2.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_2' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_2);
          wagmp_map_1_obj.icons.push(icon_2);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_3 = new GIcon();
    icon_3.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_3.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_3.iconSize = new GSize(34,35);
    icon_3.shadowSize = new GSize(34,35);
    icon_3.iconAnchor = new GPoint(9,33);
    icon_3.infoWindowAnchor = new GPoint(19,0);
    icon_3.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_3.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_3.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_3.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_3 = {
      street: '107 Saint Francis St. #2206',
      city: 'Mobile',
      state: 'AL',
      zip: '36602',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Frazer Greene Upchurch & Baker<br />107 Saint Francis St. #2206<br />Mobile, AL 36602 USA</span>',
      full: '107 Saint Francis St. #2206, Mobile, AL, 36602, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_3.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_3);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_3.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_3' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_3);
          wagmp_map_1_obj.icons.push(icon_3);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_4 = new GIcon();
    icon_4.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_4.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_4.iconSize = new GSize(34,35);
    icon_4.shadowSize = new GSize(34,35);
    icon_4.iconAnchor = new GPoint(9,33);
    icon_4.infoWindowAnchor = new GPoint(19,0);
    icon_4.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_4.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_4.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_4.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_4 = {
      street: '7745 Highway 59 South',
      city: 'Foley',
      state: 'AL',
      zip: '36535',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Malouf Furniture<br /><strong>Address:</strong><br />7745 Highway 59 South<br />Foley, AL 36535 USA</span>',
      full: '7745 Highway 59 South, Foley, AL, 36535, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_4.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_4);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_4.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_4' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_4);
          wagmp_map_1_obj.icons.push(icon_4);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_5 = new GIcon();
    icon_5.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_5.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_5.iconSize = new GSize(34,35);
    icon_5.shadowSize = new GSize(34,35);
    icon_5.iconAnchor = new GPoint(9,33);
    icon_5.infoWindowAnchor = new GPoint(19,0);
    icon_5.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_5.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_5.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_5.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_5 = {
      street: '846-C Butler Drive',
      city: 'Mobile',
      state: 'AL',
      zip: '36693',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">BCT Alabama<br /><strong>Address:</strong><br />846-C Butler Drive<br />Mobile, AL 36693 USA</span>',
      full: '846-C Butler Drive, Mobile, AL, 36693, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_5.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_5);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_5.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_5' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_5);
          wagmp_map_1_obj.icons.push(icon_5);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_6 = new GIcon();
    icon_6.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_6.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_6.iconSize = new GSize(34,35);
    icon_6.shadowSize = new GSize(34,35);
    icon_6.iconAnchor = new GPoint(9,33);
    icon_6.infoWindowAnchor = new GPoint(19,0);
    icon_6.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_6.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_6.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_6.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_6 = {
      street: '3730 Airport Blvd.',
      city: 'Mobile',
      state: 'AL',
      zip: '36608',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Wedding of a Lifetime Bridal Show & Giveaway<br /><strong>Address:</strong><br />3730 Airport Blvd.<br />Mobile, AL 36608 USA</span>',
      full: '3730 Airport Blvd., Mobile, AL, 36608, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_6.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_6);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_6.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_6' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_6);
          wagmp_map_1_obj.icons.push(icon_6);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_7 = new GIcon();
    icon_7.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_7.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_7.iconSize = new GSize(34,35);
    icon_7.shadowSize = new GSize(34,35);
    icon_7.iconAnchor = new GPoint(9,33);
    icon_7.infoWindowAnchor = new GPoint(19,0);
    icon_7.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_7.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_7.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_7.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_7 = {
      street: '2026 6th Ave. SE',
      city: 'Decatur',
      state: 'AL',
      zip: '35601',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Ronald E. Brown, D.D.S., P.C.<br /><strong>Address:</strong><br />2026 6th Ave. SE<br />Decatur, AL 35601 USA</span>',
      full: '2026 6th Ave. SE, Decatur, AL, 35601, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_7.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_7);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_7.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_7' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_7);
          wagmp_map_1_obj.icons.push(icon_7);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_8 = new GIcon();
    icon_8.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_8.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_8.iconSize = new GSize(34,35);
    icon_8.shadowSize = new GSize(34,35);
    icon_8.iconAnchor = new GPoint(9,33);
    icon_8.infoWindowAnchor = new GPoint(19,0);
    icon_8.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_8.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_8.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_8.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_8 = {
      street: '1512 West Main St.',
      city: 'Dothan',
      state: 'AL',
      zip: '36301',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Club Sun Tanning Salon<br /><strong>Address:</strong><br />1512 West Main St.<br />Dothan, AL 36301 USA</span>',
      full: '1512 West Main St., Dothan, AL, 36301, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_8.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_8);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_8.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_8' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_8);
          wagmp_map_1_obj.icons.push(icon_8);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_9 = new GIcon();
    icon_9.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_9.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_9.iconSize = new GSize(34,35);
    icon_9.shadowSize = new GSize(34,35);
    icon_9.iconAnchor = new GPoint(9,33);
    icon_9.infoWindowAnchor = new GPoint(19,0);
    icon_9.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_9.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_9.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_9.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_9 = {
      street: '2090 Schillinger Road South Suite C',
      city: 'Mobile',
      state: 'AL',
      zip: '36695',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Elkins Construction Company, Inc.<br /><strong>Address:</strong><br />2090 Schillinger Road South Suite C<br />Mobile, AL 36695 USA</span>',
      full: '2090 Schillinger Road South Suite C, Mobile, AL, 36695, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_9.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_9);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_9.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_9' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_9);
          wagmp_map_1_obj.icons.push(icon_9);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_10 = new GIcon();
    icon_10.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_10.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_10.iconSize = new GSize(34,35);
    icon_10.shadowSize = new GSize(34,35);
    icon_10.iconAnchor = new GPoint(9,33);
    icon_10.infoWindowAnchor = new GPoint(19,0);
    icon_10.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_10.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_10.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_10.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_10 = {
      street: 'P.O. Box 382394',
      city: 'Birmingham',
      state: 'AL',
      zip: '35238-2394',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Applied Employment<br />P.O. Box 382394<br />Birmingham, AL 35238-2394 USA</span>',
      full: 'P.O. Box 382394, Birmingham, AL, 35238-2394, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_10.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_10);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_10.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_10' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_10);
          wagmp_map_1_obj.icons.push(icon_10);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_11 = new GIcon();
    icon_11.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_11.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_11.iconSize = new GSize(34,35);
    icon_11.shadowSize = new GSize(34,35);
    icon_11.iconAnchor = new GPoint(9,33);
    icon_11.infoWindowAnchor = new GPoint(19,0);
    icon_11.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_11.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_11.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_11.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_11 = {
      street: '30 Garnet Road',
      city: 'Brantford',
      state: 'Ontario',
      zip: '',
      country: 'Canada',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Brant Corrosion Control<br />30 Garnet Road<br />Brantford, Ontario  Canada</span>',
      full: '30 Garnet Road, Brantford, Ontario, Canada',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_11.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_11);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_11.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_11' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_11);
          wagmp_map_1_obj.icons.push(icon_11);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_12 = new GIcon();
    icon_12.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_12.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_12.iconSize = new GSize(34,35);
    icon_12.shadowSize = new GSize(34,35);
    icon_12.iconAnchor = new GPoint(9,33);
    icon_12.infoWindowAnchor = new GPoint(19,0);
    icon_12.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_12.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_12.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_12.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_12 = {
      street: '124 W 1st Ave',
      city: 'Gulf Shores',
      state: 'AL',
      zip: '36542',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Gulf Shores Steamer<br />124 W 1st Ave<br />Gulf Shores, AL 36542 USA</span>',
      full: '124 W 1st Ave, Gulf Shores, AL, 36542, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_12.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_12);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_12.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_12' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_12);
          wagmp_map_1_obj.icons.push(icon_12);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_13 = new GIcon();
    icon_13.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_13.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_13.iconSize = new GSize(34,35);
    icon_13.shadowSize = new GSize(34,35);
    icon_13.iconAnchor = new GPoint(9,33);
    icon_13.infoWindowAnchor = new GPoint(19,0);
    icon_13.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_13.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_13.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_13.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_13 = {
      street: '14210 Greeno Road',
      city: 'Fairhope',
      state: 'AL',
      zip: '36532',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Oak Hollow Farm <br />14210 Greeno Road<br />Fairhope, AL 36532 USA</span>',
      full: '14210 Greeno Road, Fairhope, AL, 36532, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_13.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_13);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_13.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_13' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_13);
          wagmp_map_1_obj.icons.push(icon_13);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_14 = new GIcon();
    icon_14.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_14.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_14.iconSize = new GSize(34,35);
    icon_14.shadowSize = new GSize(34,35);
    icon_14.iconAnchor = new GPoint(9,33);
    icon_14.infoWindowAnchor = new GPoint(19,0);
    icon_14.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_14.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_14.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_14.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_14 = {
      street: '1252 Dauphin Street',
      city: 'Mobile',
      state: 'AL',
      zip: '36604',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Moore & Wolfe - Attorneys At Law<br /><strong>Address:</strong><br />1252 Dauphin Street<br />Mobile, AL 36604 USA</span>',
      full: '1252 Dauphin Street, Mobile, AL, 36604, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_14.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_14);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_14.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_14' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_14);
          wagmp_map_1_obj.icons.push(icon_14);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_15 = new GIcon();
    icon_15.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_15.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_15.iconSize = new GSize(34,35);
    icon_15.shadowSize = new GSize(34,35);
    icon_15.iconAnchor = new GPoint(9,33);
    icon_15.infoWindowAnchor = new GPoint(19,0);
    icon_15.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_15.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_15.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_15.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_15 = {
      street: '2058 Airport Blvd.',
      city: 'Mobile',
      state: 'AL',
      zip: '',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">The Cooper Restaurant Family<br />2058 Airport Blvd.<br />Mobile, AL  USA</span>',
      full: '2058 Airport Blvd., Mobile, AL, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_15.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_15);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_15.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_15' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_15);
          wagmp_map_1_obj.icons.push(icon_15);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_16 = new GIcon();
    icon_16.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_16.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_16.iconSize = new GSize(34,35);
    icon_16.shadowSize = new GSize(34,35);
    icon_16.iconAnchor = new GPoint(9,33);
    icon_16.infoWindowAnchor = new GPoint(19,0);
    icon_16.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_16.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_16.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_16.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_16 = {
      street: '11201 US Highway 98 E',
      city: 'Fairhope',
      state: 'AL',
      zip: '36532',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Blackfyn Customs<br />11201 US Highway 98 E<br />Fairhope, AL 36532 USA</span>',
      full: '11201 US Highway 98 E, Fairhope, AL, 36532, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_16.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_16);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_16.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_16' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_16);
          wagmp_map_1_obj.icons.push(icon_16);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_17 = new GIcon();
    icon_17.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_17.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_17.iconSize = new GSize(34,35);
    icon_17.shadowSize = new GSize(34,35);
    icon_17.iconAnchor = new GPoint(9,33);
    icon_17.infoWindowAnchor = new GPoint(19,0);
    icon_17.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_17.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_17.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_17.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_17 = {
      street: '3730 Halls Mill Road',
      city: 'Mobile',
      state: 'AL',
      zip: '36693',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Daniels Sheetmetal<br />3730 Halls Mill Road<br />Mobile, AL 36693 USA</span>',
      full: '3730 Halls Mill Road, Mobile, AL, 36693, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_17.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_17);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_17.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_17' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_17);
          wagmp_map_1_obj.icons.push(icon_17);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_18 = new GIcon();
    icon_18.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_18.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_18.iconSize = new GSize(34,35);
    icon_18.shadowSize = new GSize(34,35);
    icon_18.iconAnchor = new GPoint(9,33);
    icon_18.infoWindowAnchor = new GPoint(19,0);
    icon_18.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_18.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_18.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_18.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_18 = {
      street: '22970 Hwy 59 North',
      city: 'Robertsdale',
      state: 'AL',
      zip: '36567',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">DataTrust Technologies and Consultants Incorporated<br />22970 Hwy 59 North<br />Robertsdale, AL 36567 USA</span>',
      full: '22970 Hwy 59 North, Robertsdale, AL, 36567, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_18.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_18);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_18.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_18' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_18);
          wagmp_map_1_obj.icons.push(icon_18);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_19 = new GIcon();
    icon_19.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_19.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_19.iconSize = new GSize(34,35);
    icon_19.shadowSize = new GSize(34,35);
    icon_19.iconAnchor = new GPoint(9,33);
    icon_19.infoWindowAnchor = new GPoint(19,0);
    icon_19.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_19.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_19.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_19.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_19 = {
      street: '301 N. Water Street',
      city: 'Mobile',
      state: 'AL',
      zip: '36602',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Jordan Pile Driving<br />301 N. Water Street<br />Mobile, AL 36602 USA</span>',
      full: '301 N. Water Street, Mobile, AL, 36602, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_19.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_19);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_19.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_19' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_19);
          wagmp_map_1_obj.icons.push(icon_19);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_20 = new GIcon();
    icon_20.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_20.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_20.iconSize = new GSize(34,35);
    icon_20.shadowSize = new GSize(34,35);
    icon_20.iconAnchor = new GPoint(9,33);
    icon_20.infoWindowAnchor = new GPoint(19,0);
    icon_20.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_20.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_20.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_20.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_20 = {
      street: '3012 Airport Blvd.',
      city: 'Mobile',
      state: 'AL',
      zip: '36606',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Lous Jewelry<br />3012 Airport Blvd.<br />Mobile, AL 36606 USA</span>',
      full: '3012 Airport Blvd., Mobile, AL, 36606, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_20.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_20);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_20.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_20' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_20);
          wagmp_map_1_obj.icons.push(icon_20);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_21 = new GIcon();
    icon_21.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_21.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_21.iconSize = new GSize(34,35);
    icon_21.shadowSize = new GSize(34,35);
    icon_21.iconAnchor = new GPoint(9,33);
    icon_21.infoWindowAnchor = new GPoint(19,0);
    icon_21.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_21.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_21.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_21.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_21 = {
      street: '1530 Battleship Pkwy.',
      city: 'Spanish Ft.',
      state: 'AL',
      zip: '',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Felixs Fish Camp Grill<br />1530 Battleship Pkwy.<br />Spanish Ft., AL  USA</span>',
      full: '1530 Battleship Pkwy., Spanish Ft., AL, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_21.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_21);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_21.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_21' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_21);
          wagmp_map_1_obj.icons.push(icon_21);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_22 = new GIcon();
    icon_22.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_22.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_22.iconSize = new GSize(34,35);
    icon_22.shadowSize = new GSize(34,35);
    icon_22.iconAnchor = new GPoint(9,33);
    icon_22.infoWindowAnchor = new GPoint(19,0);
    icon_22.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_22.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_22.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_22.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_22 = {
      street: '55 N Section Street',
      city: 'Fairhope',
      state: 'AL',
      zip: '36533',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Ham & Associates, LLC<br />55 N Section Street<br />Fairhope, AL 36533 USA</span>',
      full: '55 N Section Street, Fairhope, AL, 36533, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_22.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_22);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_22.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_22' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_22);
          wagmp_map_1_obj.icons.push(icon_22);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_23 = new GIcon();
    icon_23.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_23.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_23.iconSize = new GSize(34,35);
    icon_23.shadowSize = new GSize(34,35);
    icon_23.iconAnchor = new GPoint(9,33);
    icon_23.infoWindowAnchor = new GPoint(19,0);
    icon_23.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_23.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_23.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_23.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_23 = {
      street: '6336 Piccadilly Square Dr.',
      city: 'Mobile',
      state: 'AL',
      zip: '36609',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Mortgage Team 1<br />6336 Piccadilly Square Dr.<br />Mobile, AL 36609 USA</span>',
      full: '6336 Piccadilly Square Dr., Mobile, AL, 36609, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_23.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_23);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_23.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_23' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_23);
          wagmp_map_1_obj.icons.push(icon_23);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_24 = new GIcon();
    icon_24.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_24.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_24.iconSize = new GSize(34,35);
    icon_24.shadowSize = new GSize(34,35);
    icon_24.iconAnchor = new GPoint(9,33);
    icon_24.infoWindowAnchor = new GPoint(19,0);
    icon_24.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_24.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_24.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_24.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_24 = {
      street: '61 Saint Joseph Street',
      city: 'Mobile',
      state: 'AL',
      zip: '36602',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Brady Radcliff & Brown, LLP<br />61 Saint Joseph Street<br />Mobile, AL 36602 USA</span>',
      full: '61 Saint Joseph Street, Mobile, AL, 36602, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_24.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_24);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_24.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_24' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_24);
          wagmp_map_1_obj.icons.push(icon_24);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_25 = new GIcon();
    icon_25.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_25.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_25.iconSize = new GSize(34,35);
    icon_25.shadowSize = new GSize(34,35);
    icon_25.iconAnchor = new GPoint(9,33);
    icon_25.infoWindowAnchor = new GPoint(19,0);
    icon_25.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_25.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_25.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_25.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_25 = {
      street: '101 Memorial Hospital Dr.',
      city: 'Mobile',
      state: 'AL',
      zip: '36609',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Azalea City Plastic Surgery<br />101 Memorial Hospital Dr.<br />Mobile, AL 36609 USA</span>',
      full: '101 Memorial Hospital Dr., Mobile, AL, 36609, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_25.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_25);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_25.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_25' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_25);
          wagmp_map_1_obj.icons.push(icon_25);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_26 = new GIcon();
    icon_26.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_26.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_26.iconSize = new GSize(34,35);
    icon_26.shadowSize = new GSize(34,35);
    icon_26.iconAnchor = new GPoint(9,33);
    icon_26.infoWindowAnchor = new GPoint(19,0);
    icon_26.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_26.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_26.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_26.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_26 = {
      street: '851 East I-65 Service Road South',
      city: 'Mobile',
      state: 'AL',
      zip: '36606',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Friedmans Fine Jewelry<br />851 East I-65 Service Road South <br />Mobile, AL 36606 USA</span>',
      full: '851 East I-65 Service Road South, Mobile, AL, 36606, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_26.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_26);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_26.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_26' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_26);
          wagmp_map_1_obj.icons.push(icon_26);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_27 = new GIcon();
    icon_27.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_27.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_27.iconSize = new GSize(34,35);
    icon_27.shadowSize = new GSize(34,35);
    icon_27.iconAnchor = new GPoint(9,33);
    icon_27.infoWindowAnchor = new GPoint(19,0);
    icon_27.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_27.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_27.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_27.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_27 = {
      street: '3801 Airport Boulevard',
      city: 'Mobile',
      state: 'AL',
      zip: '36608',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Pierce Ledyard<br />3801 Airport Boulevard<br />Mobile, AL 36608 USA</span>',
      full: '3801 Airport Boulevard, Mobile, AL, 36608, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_27.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_27);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_27.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_27' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_27);
          wagmp_map_1_obj.icons.push(icon_27);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_28 = new GIcon();
    icon_28.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_28.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_28.iconSize = new GSize(34,35);
    icon_28.shadowSize = new GSize(34,35);
    icon_28.iconAnchor = new GPoint(9,33);
    icon_28.infoWindowAnchor = new GPoint(19,0);
    icon_28.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_28.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_28.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_28.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_28 = {
      street: '3151 Newman Road',
      city: 'Mobile',
      state: 'AL',
      zip: '36695',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Hermitage-Rippy Estate<br />3151 Newman Road<br />Mobile, AL 36695 USA</span>',
      full: '3151 Newman Road, Mobile, AL, 36695, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_28.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_28);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_28.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_28' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_28);
          wagmp_map_1_obj.icons.push(icon_28);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_29 = new GIcon();
    icon_29.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_29.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_29.iconSize = new GSize(34,35);
    icon_29.shadowSize = new GSize(34,35);
    icon_29.iconAnchor = new GPoint(9,33);
    icon_29.infoWindowAnchor = new GPoint(19,0);
    icon_29.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_29.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_29.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_29.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_29 = {
      street: '6701 Washington Ave.',
      city: 'Ocean Springs',
      state: 'MS',
      zip: '39564',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Westin Homes<br />6701 Washington Ave.<br />Ocean Springs, MS 39564 USA</span>',
      full: '6701 Washington Ave., Ocean Springs, MS, 39564, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_29.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_29);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_29.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_29' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_29);
          wagmp_map_1_obj.icons.push(icon_29);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_30 = new GIcon();
    icon_30.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_30.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_30.iconSize = new GSize(34,35);
    icon_30.shadowSize = new GSize(34,35);
    icon_30.iconAnchor = new GPoint(9,33);
    icon_30.infoWindowAnchor = new GPoint(19,0);
    icon_30.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_30.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_30.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_30.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_30 = {
      street: '880 Schillinger Rd. S.',
      city: 'Mobile',
      state: 'AL',
      zip: '36695',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Hacienda San Miguel<br />880 Schillinger Rd. S.<br />Mobile, AL 36695 USA</span>',
      full: '880 Schillinger Rd. S., Mobile, AL, 36695, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_30.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_30);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_30.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_30' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_30);
          wagmp_map_1_obj.icons.push(icon_30);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_31 = new GIcon();
    icon_31.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_31.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_31.iconSize = new GSize(34,35);
    icon_31.shadowSize = new GSize(34,35);
    icon_31.iconAnchor = new GPoint(9,33);
    icon_31.infoWindowAnchor = new GPoint(19,0);
    icon_31.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_31.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_31.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_31.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_31 = {
      street: '348 N. McGregor Ave.',
      city: 'Mobile',
      state: 'AL',
      zip: '36608',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Mobile Country Emergency Management Agency<br />348 N. McGregor Ave.<br />Mobile, AL 36608 USA</span>',
      full: '348 N. McGregor Ave., Mobile, AL, 36608, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_31.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_31);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_31.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_31' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_31);
          wagmp_map_1_obj.icons.push(icon_31);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_32 = new GIcon();
    icon_32.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_32.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_32.iconSize = new GSize(34,35);
    icon_32.shadowSize = new GSize(34,35);
    icon_32.iconAnchor = new GPoint(9,33);
    icon_32.infoWindowAnchor = new GPoint(19,0);
    icon_32.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_32.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_32.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_32.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_32 = {
      street: '410 Fairhope Ave.',
      city: 'Fairhope',
      state: 'AL',
      zip: '36532',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Clementine, Inc<br />410 Fairhope Ave.<br />Fairhope, AL 36532 USA</span>',
      full: '410 Fairhope Ave., Fairhope, AL, 36532, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_32.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_32);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_32.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_32' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_32);
          wagmp_map_1_obj.icons.push(icon_32);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_33 = new GIcon();
    icon_33.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_33.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_33.iconSize = new GSize(34,35);
    icon_33.shadowSize = new GSize(34,35);
    icon_33.iconAnchor = new GPoint(9,33);
    icon_33.infoWindowAnchor = new GPoint(19,0);
    icon_33.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_33.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_33.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_33.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_33 = {
      street: '7060 Three Notch Road',
      city: 'Mobile',
      state: 'AL',
      zip: '36619',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Golden Flames Banquet and Ballroom<br />7060 Three Notch Road<br />Mobile, AL 36619 USA</span>',
      full: '7060 Three Notch Road, Mobile, AL, 36619, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_33.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_33);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_33.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_33' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_33);
          wagmp_map_1_obj.icons.push(icon_33);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_34 = new GIcon();
    icon_34.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_34.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_34.iconSize = new GSize(34,35);
    icon_34.shadowSize = new GSize(34,35);
    icon_34.iconAnchor = new GPoint(9,33);
    icon_34.infoWindowAnchor = new GPoint(19,0);
    icon_34.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_34.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_34.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_34.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_34 = {
      street: '960 Schillinger Road Suite B.',
      city: 'Mobile',
      state: 'AL',
      zip: '36695',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">iTan Resort<br />iTan Resort<br />960 Schillinger Road Suite B.<br />Mobile, AL 36695 USA</span>',
      full: '960 Schillinger Road Suite B., Mobile, AL, 36695, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_34.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_34);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_34.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_34' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_34);
          wagmp_map_1_obj.icons.push(icon_34);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_35 = new GIcon();
    icon_35.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_35.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_35.iconSize = new GSize(34,35);
    icon_35.shadowSize = new GSize(34,35);
    icon_35.iconAnchor = new GPoint(9,33);
    icon_35.infoWindowAnchor = new GPoint(19,0);
    icon_35.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_35.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_35.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_35.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_35 = {
      street: '280 South McGregor Avenue Suite B',
      city: 'Mobile',
      state: 'AL',
      zip: '36608',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Bark Avenue Pets<br />280 South McGregor Avenue Suite B<br />Mobile, AL 36608 USA</span>',
      full: '280 South McGregor Avenue Suite B, Mobile, AL, 36608, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_35.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_35);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_35.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_35' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_35);
          wagmp_map_1_obj.icons.push(icon_35);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_36 = new GIcon();
    icon_36.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_36.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_36.iconSize = new GSize(34,35);
    icon_36.shadowSize = new GSize(34,35);
    icon_36.iconAnchor = new GPoint(9,33);
    icon_36.infoWindowAnchor = new GPoint(19,0);
    icon_36.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_36.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_36.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_36.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_36 = {
      street: 'P. O. Box 851118',
      city: 'Mobile',
      state: 'AL',
      zip: '36685',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Gulf States General Contractors<br />P. O. Box 851118<br />Mobile, AL 36685 USA</span>',
      full: 'P. O. Box 851118, Mobile, AL, 36685, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_36.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_36);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_36.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_36' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_36);
          wagmp_map_1_obj.icons.push(icon_36);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_37 = new GIcon();
    icon_37.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_37.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_37.iconSize = new GSize(34,35);
    icon_37.shadowSize = new GSize(34,35);
    icon_37.iconAnchor = new GPoint(9,33);
    icon_37.infoWindowAnchor = new GPoint(19,0);
    icon_37.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_37.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_37.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_37.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_37 = {
      street: '5452 Hwy. 90 W.',
      city: 'Theodore',
      state: 'AL',
      zip: '36619',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Aztecas Restaurant and Cantina<br />5452 Hwy. 90 W. <br />Theodore, AL 36619 USA</span>',
      full: '5452 Hwy. 90 W., Theodore, AL, 36619, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_37.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_37);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_37.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_37' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_37);
          wagmp_map_1_obj.icons.push(icon_37);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_38 = new GIcon();
    icon_38.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_38.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_38.iconSize = new GSize(34,35);
    icon_38.shadowSize = new GSize(34,35);
    icon_38.iconAnchor = new GPoint(9,33);
    icon_38.infoWindowAnchor = new GPoint(19,0);
    icon_38.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_38.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_38.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_38.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_38 = {
      street: '143-3 Westgate Parkway',
      city: 'Dothan',
      state: 'AL',
      zip: '36303',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Paper Moon LLC<br />143-3 Westgate Parkway<br />Dothan, AL 36303 USA</span>',
      full: '143-3 Westgate Parkway, Dothan, AL, 36303, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_38.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_38);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_38.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_38' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_38);
          wagmp_map_1_obj.icons.push(icon_38);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_39 = new GIcon();
    icon_39.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_39.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_39.iconSize = new GSize(34,35);
    icon_39.shadowSize = new GSize(34,35);
    icon_39.iconAnchor = new GPoint(9,33);
    icon_39.infoWindowAnchor = new GPoint(19,0);
    icon_39.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_39.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_39.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_39.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_39 = {
      street: '8020 Moffett Road',
      city: 'Semmes',
      state: 'AL',
      zip: '36575',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Its Not Just Scrap<br />8020 Moffett Road<br />Semmes, AL 36575 USA</span>',
      full: '8020 Moffett Road, Semmes, AL, 36575, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_39.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_39);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_39.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_39' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_39);
          wagmp_map_1_obj.icons.push(icon_39);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_40 = new GIcon();
    icon_40.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_40.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_40.iconSize = new GSize(34,35);
    icon_40.shadowSize = new GSize(34,35);
    icon_40.iconAnchor = new GPoint(9,33);
    icon_40.infoWindowAnchor = new GPoint(19,0);
    icon_40.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_40.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_40.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_40.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_40 = {
      street: '3887 Driskell Loop Rd.',
      city: 'Wilmer',
      state: 'AL',
      zip: '36695',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Betty\'s Berry Farm<br />3887 Driskell Loop Rd.<br />Wilmer, AL 36695 USA</span>',
      full: '3887 Driskell Loop Rd., Wilmer, AL, 36695, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_40.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_40);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_40.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_40' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_40);
          wagmp_map_1_obj.icons.push(icon_40);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_41 = new GIcon();
    icon_41.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_41.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_41.iconSize = new GSize(34,35);
    icon_41.shadowSize = new GSize(34,35);
    icon_41.iconAnchor = new GPoint(9,33);
    icon_41.infoWindowAnchor = new GPoint(19,0);
    icon_41.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_41.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_41.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_41.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_41 = {
      street: '7070 Grelot Road',
      city: 'Mobile',
      state: 'AL',
      zip: '36695',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Alabama Business Link<br />7070 Grelot Road</br>Mobile, AL 36695 USA</span>',
      full: '7070 Grelot Road, Mobile, AL, 36695, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_41.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_41);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_41.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_41' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_41);
          wagmp_map_1_obj.icons.push(icon_41);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_42 = new GIcon();
    icon_42.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_42.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_42.iconSize = new GSize(34,35);
    icon_42.shadowSize = new GSize(34,35);
    icon_42.iconAnchor = new GPoint(9,33);
    icon_42.infoWindowAnchor = new GPoint(19,0);
    icon_42.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_42.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_42.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_42.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_42 = {
      street: '9672 White Castle Road',
      city: 'Mobile',
      state: 'AL',
      zip: '36695',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">October Belle Designs<br />9672 White Castle Road <br />Mobile, AL 36695 USA</span>',
      full: '9672 White Castle Road, Mobile, AL, 36695, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_42.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_42);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_42.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_42' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_42);
          wagmp_map_1_obj.icons.push(icon_42);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_43 = new GIcon();
    icon_43.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_43.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_43.iconSize = new GSize(34,35);
    icon_43.shadowSize = new GSize(34,35);
    icon_43.iconAnchor = new GPoint(9,33);
    icon_43.infoWindowAnchor = new GPoint(19,0);
    icon_43.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_43.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_43.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_43.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_43 = {
      street: '4500 Bit and Spur Road',
      city: 'Mobile',
      state: 'AL',
      zip: '36608',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Grace Bible Church<br />4500 Bit and Spur Road<br />Mobile, AL 36608 USA</span>',
      full: '4500 Bit and Spur Road, Mobile, AL, 36608, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_43.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_43);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_43.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_43' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_43);
          wagmp_map_1_obj.icons.push(icon_43);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_44 = new GIcon();
    icon_44.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_44.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_44.iconSize = new GSize(34,35);
    icon_44.shadowSize = new GSize(34,35);
    icon_44.iconAnchor = new GPoint(9,33);
    icon_44.infoWindowAnchor = new GPoint(19,0);
    icon_44.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_44.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_44.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_44.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_44 = {
      street: '273 Azalea Road',
      city: 'Mobile',
      state: 'AL',
      zip: '36609',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Quantum Sales Training<br />273 Azalea Road<br />Mobile, AL 36609 USA</span>',
      full: '273 Azalea Road, Mobile, AL, 36609, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_44.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_44);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_44.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_44' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_44);
          wagmp_map_1_obj.icons.push(icon_44);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_45 = new GIcon();
    icon_45.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_45.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_45.iconSize = new GSize(34,35);
    icon_45.shadowSize = new GSize(34,35);
    icon_45.iconAnchor = new GPoint(9,33);
    icon_45.infoWindowAnchor = new GPoint(19,0);
    icon_45.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_45.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_45.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_45.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_45 = {
      street: 'P. O. Box 295',
      city: 'Saraland',
      state: 'AL',
      zip: '36571',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Deborah Jones<br />P. O. Box 295 <br />Saraland, AL 36571 USA</span>',
      full: 'P. O. Box 295, Saraland, AL, 36571, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_45.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_45);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_45.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_45' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_45);
          wagmp_map_1_obj.icons.push(icon_45);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_46 = new GIcon();
    icon_46.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_46.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_46.iconSize = new GSize(34,35);
    icon_46.shadowSize = new GSize(34,35);
    icon_46.iconAnchor = new GPoint(9,33);
    icon_46.infoWindowAnchor = new GPoint(19,0);
    icon_46.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_46.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_46.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_46.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_46 = {
      street: '3604 Pleasant Ridge Road',
      city: 'Montgomery',
      state: 'AL',
      zip: '36109',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Eastern Hills Baptist Church<br />3604 Pleasant Ridge Road<br />Montgomery, AL 36109 USA</span>',
      full: '3604 Pleasant Ridge Road, Montgomery, AL, 36109, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_46.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_46);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_46.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_46' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_46);
          wagmp_map_1_obj.icons.push(icon_46);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_47 = new GIcon();
    icon_47.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_47.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_47.iconSize = new GSize(34,35);
    icon_47.shadowSize = new GSize(34,35);
    icon_47.iconAnchor = new GPoint(9,33);
    icon_47.infoWindowAnchor = new GPoint(19,0);
    icon_47.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_47.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_47.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_47.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_47 = {
      street: '3053 Cotton Street',
      city: 'Mobile',
      state: 'AL',
      zip: '36607',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Brabner & Hollon, Inc<br />3053 Cotton Street<br />Mobile, AL 36607 USA</span>',
      full: '3053 Cotton Street, Mobile, AL, 36607, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_47.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_47);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_47.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_47' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_47);
          wagmp_map_1_obj.icons.push(icon_47);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_48 = new GIcon();
    icon_48.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_48.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_48.iconSize = new GSize(34,35);
    icon_48.shadowSize = new GSize(34,35);
    icon_48.iconAnchor = new GPoint(9,33);
    icon_48.infoWindowAnchor = new GPoint(19,0);
    icon_48.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_48.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_48.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_48.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_48 = {
      street: '24443 Avalon Boulevard',
      city: 'Daphne',
      state: 'AL',
      zip: '36526',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">The Bump Free Shave Company<br />24443 Avalon Boulevard<br />Daphne, AL 36526 USA</span>',
      full: '24443 Avalon Boulevard, Daphne, AL, 36526, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_48.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_48);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_48.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_48' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_48);
          wagmp_map_1_obj.icons.push(icon_48);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_49 = new GIcon();
    icon_49.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_49.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_49.iconSize = new GSize(34,35);
    icon_49.shadowSize = new GSize(34,35);
    icon_49.iconAnchor = new GPoint(9,33);
    icon_49.infoWindowAnchor = new GPoint(19,0);
    icon_49.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_49.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_49.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_49.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_49 = {
      street: 'PO Box 278',
      city: 'Decatur',
      state: 'GA',
      zip: '30031',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">GoSouthernSigns.com<br />PO Box 278<br />Decatur, GA 30031 USA</span>',
      full: 'PO Box 278, Decatur, GA, 30031, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_49.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_49);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_49.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_49' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_49);
          wagmp_map_1_obj.icons.push(icon_49);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_50 = new GIcon();
    icon_50.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_50.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_50.iconSize = new GSize(34,35);
    icon_50.shadowSize = new GSize(34,35);
    icon_50.iconAnchor = new GPoint(9,33);
    icon_50.infoWindowAnchor = new GPoint(19,0);
    icon_50.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_50.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_50.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_50.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_50 = {
      street: '2549B Eastbluff Drive #418',
      city: 'Newport Beach',
      state: 'CA',
      zip: '92660',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">SouthernCalBanners.com<br />2549B Eastbluff Drive #418<br />Newport Beach, CA 92660 USA</span>',
      full: '2549B Eastbluff Drive #418, Newport Beach, CA, 92660, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_50.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_50);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_50.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_50' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_50);
          wagmp_map_1_obj.icons.push(icon_50);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_51 = new GIcon();
    icon_51.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_51.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_51.iconSize = new GSize(34,35);
    icon_51.shadowSize = new GSize(34,35);
    icon_51.iconAnchor = new GPoint(9,33);
    icon_51.infoWindowAnchor = new GPoint(19,0);
    icon_51.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_51.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_51.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_51.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_51 = {
      street: '3702 Dauphin Street',
      city: 'Mobile',
      state: 'AL',
      zip: '36608',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Villa Dauphine<br />3702 Dauphin Street<br />Mobile, AL 36608 USA</span>',
      full: '3702 Dauphin Street, Mobile, AL, 36608, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_51.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_51);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_51.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_51' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_51);
          wagmp_map_1_obj.icons.push(icon_51);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_52 = new GIcon();
    icon_52.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_52.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_52.iconSize = new GSize(34,35);
    icon_52.shadowSize = new GSize(34,35);
    icon_52.iconAnchor = new GPoint(9,33);
    icon_52.infoWindowAnchor = new GPoint(19,0);
    icon_52.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_52.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_52.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_52.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_52 = {
      street: '1034 Joaneen Drive',
      city: 'Saraland',
      state: 'AL',
      zip: '36571',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Gulf Coast Air and Power<br />1034 Joaneen Drive<br />Saraland, AL 36571 USA</span>',
      full: '1034 Joaneen Drive, Saraland, AL, 36571, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_52.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_52);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_52.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_52' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_52);
          wagmp_map_1_obj.icons.push(icon_52);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_53 = new GIcon();
    icon_53.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_53.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_53.iconSize = new GSize(34,35);
    icon_53.shadowSize = new GSize(34,35);
    icon_53.iconAnchor = new GPoint(9,33);
    icon_53.infoWindowAnchor = new GPoint(19,0);
    icon_53.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_53.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_53.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_53.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_53 = {
      street: '310 Sengstak Street',
      city: 'Mobile',
      state: 'AL',
      zip: '36603',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Most Pure Heart of Mary School<br />310 Sengstak Street<br />Mobile, AL 36603 USA</span>',
      full: '310 Sengstak Street, Mobile, AL, 36603, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_53.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_53);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_53.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_53' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_53);
          wagmp_map_1_obj.icons.push(icon_53);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_54 = new GIcon();
    icon_54.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_54.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_54.iconSize = new GSize(34,35);
    icon_54.shadowSize = new GSize(34,35);
    icon_54.iconAnchor = new GPoint(9,33);
    icon_54.infoWindowAnchor = new GPoint(19,0);
    icon_54.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_54.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_54.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_54.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_54 = {
      street: '222 West Laurel Avenue',
      city: 'Foley',
      state: 'AL',
      zip: '36535',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Ebert Agency, Inc<br />222 West Laurel Avenue<br />Foley, AL 36535 USA</span>',
      full: '222 West Laurel Avenue, Foley, AL, 36535, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_54.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_54);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_54.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_54' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_54);
          wagmp_map_1_obj.icons.push(icon_54);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_55 = new GIcon();
    icon_55.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_55.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_55.iconSize = new GSize(34,35);
    icon_55.shadowSize = new GSize(34,35);
    icon_55.iconAnchor = new GPoint(9,33);
    icon_55.infoWindowAnchor = new GPoint(19,0);
    icon_55.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_55.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_55.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_55.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_55 = {
      street: '619 Azalea Road',
      city: 'Mobile',
      state: 'AL',
      zip: '36609',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Bugmaster<br />619 Azalea Road<br />Mobile, AL 36609 USA</span>',
      full: '619 Azalea Road, Mobile, AL, 36609, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_55.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_55);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_55.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_55' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_55);
          wagmp_map_1_obj.icons.push(icon_55);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_56 = new GIcon();
    icon_56.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_56.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_56.iconSize = new GSize(34,35);
    icon_56.shadowSize = new GSize(34,35);
    icon_56.iconAnchor = new GPoint(9,33);
    icon_56.infoWindowAnchor = new GPoint(19,0);
    icon_56.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_56.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_56.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_56.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_56 = {
      street: '21205 Highway 613',
      city: 'Moss Point',
      state: 'MS',
      zip: '39562',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">The East Central Link<br />21205 Highway 613<br />Moss Point, MS 39562 USA</span>',
      full: '21205 Highway 613, Moss Point, MS, 39562, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_56.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_56);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_56.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_56' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_56);
          wagmp_map_1_obj.icons.push(icon_56);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_57 = new GIcon();
    icon_57.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_57.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_57.iconSize = new GSize(34,35);
    icon_57.shadowSize = new GSize(34,35);
    icon_57.iconAnchor = new GPoint(9,33);
    icon_57.infoWindowAnchor = new GPoint(19,0);
    icon_57.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_57.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_57.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_57.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_57 = {
      street: '5858 Old Pascagoula Road',
      city: 'Mobile',
      state: 'AL',
      zip: '36619',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Research Strategies, Inc<br />5858 Old Pascagoula Road<br />Mobile, AL 36619 USA</span>',
      full: '5858 Old Pascagoula Road, Mobile, AL, 36619, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_57.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_57);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_57.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_57' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_57);
          wagmp_map_1_obj.icons.push(icon_57);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_58 = new GIcon();
    icon_58.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_58.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_58.iconSize = new GSize(34,35);
    icon_58.shadowSize = new GSize(34,35);
    icon_58.iconAnchor = new GPoint(9,33);
    icon_58.infoWindowAnchor = new GPoint(19,0);
    icon_58.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_58.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_58.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_58.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_58 = {
      street: 'PO Box 10820',
      city: 'Mobile',
      state: 'AL',
      zip: '',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">TDA Sports.com<br />PO Box 10820<br />Mobile, AL  USA</span>',
      full: 'PO Box 10820, Mobile, AL, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_58.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_58);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_58.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_58' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_58);
          wagmp_map_1_obj.icons.push(icon_58);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_59 = new GIcon();
    icon_59.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_59.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_59.iconSize = new GSize(34,35);
    icon_59.shadowSize = new GSize(34,35);
    icon_59.iconAnchor = new GPoint(9,33);
    icon_59.infoWindowAnchor = new GPoint(19,0);
    icon_59.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_59.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_59.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_59.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_59 = {
      street: '951 Springhill Avenue',
      city: 'Mobile',
      state: 'AL',
      zip: '36608',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Shipboard Electrical and Air<br />951 Springhill Avenue<br />Mobile, AL 36608 USA</span>',
      full: '951 Springhill Avenue, Mobile, AL, 36608, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_59.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_59);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_59.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_59' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_59);
          wagmp_map_1_obj.icons.push(icon_59);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_60 = new GIcon();
    icon_60.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_60.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_60.iconSize = new GSize(34,35);
    icon_60.shadowSize = new GSize(34,35);
    icon_60.iconAnchor = new GPoint(9,33);
    icon_60.infoWindowAnchor = new GPoint(19,0);
    icon_60.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_60.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_60.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_60.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_60 = {
      street: '18831 Highway 63',
      city: 'Moss Point',
      state: 'MS',
      zip: '39562',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Cupit Signs<br />18831 Highway 63<br />Moss Point, MS 39562 USA</span>',
      full: '18831 Highway 63, Moss Point, MS, 39562, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_60.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_60);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_60.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_60' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_60);
          wagmp_map_1_obj.icons.push(icon_60);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_61 = new GIcon();
    icon_61.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_61.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_61.iconSize = new GSize(34,35);
    icon_61.shadowSize = new GSize(34,35);
    icon_61.iconAnchor = new GPoint(9,33);
    icon_61.infoWindowAnchor = new GPoint(19,0);
    icon_61.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_61.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_61.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_61.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_61 = {
      street: '8859 Cottage Hill Road',
      city: 'Mobile',
      state: 'AL',
      zip: '36695',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">KB Blooms Nursery<br />8859 Cottage Hill Road<br />Mobile, AL 36695 USA</span>',
      full: '8859 Cottage Hill Road, Mobile, AL, 36695, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_61.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_61);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_61.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_61' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_61);
          wagmp_map_1_obj.icons.push(icon_61);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_62 = new GIcon();
    icon_62.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_62.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_62.iconSize = new GSize(34,35);
    icon_62.shadowSize = new GSize(34,35);
    icon_62.iconAnchor = new GPoint(9,33);
    icon_62.infoWindowAnchor = new GPoint(19,0);
    icon_62.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_62.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_62.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_62.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_62 = {
      street: '3233 Executive Park Circl',
      city: 'Mobile',
      state: 'AL',
      zip: '36606',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Innovative Financial Solutions<br />3233 Executive Park Circl<br />Mobile, AL 36606 USA</span>',
      full: '3233 Executive Park Circl, Mobile, AL, 36606, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_62.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_62);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_62.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_62' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_62);
          wagmp_map_1_obj.icons.push(icon_62);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_63 = new GIcon();
    icon_63.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_63.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_63.iconSize = new GSize(34,35);
    icon_63.shadowSize = new GSize(34,35);
    icon_63.iconAnchor = new GPoint(9,33);
    icon_63.infoWindowAnchor = new GPoint(19,0);
    icon_63.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_63.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_63.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_63.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_63 = {
      street: '5905 Airport Boulevard Suite G',
      city: 'Mobile',
      state: 'AL',
      zip: '36608',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Southern Breeze Online<br />5905 Airport Boulevard Suite G<br />Mobile, AL 36608 USA</span>',
      full: '5905 Airport Boulevard Suite G, Mobile, AL, 36608, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_63.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_63);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_63.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_63' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_63);
          wagmp_map_1_obj.icons.push(icon_63);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_64 = new GIcon();
    icon_64.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_64.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_64.iconSize = new GSize(34,35);
    icon_64.shadowSize = new GSize(34,35);
    icon_64.iconAnchor = new GPoint(9,33);
    icon_64.infoWindowAnchor = new GPoint(19,0);
    icon_64.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_64.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_64.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_64.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_64 = {
      street: '401 Hillyer Road',
      city: 'Anniston',
      state: 'AL',
      zip: '36207',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Southern Dream Weddings<br />401 Hillyer Road<br />Anniston, AL 36207 USA</span>',
      full: '401 Hillyer Road, Anniston, AL, 36207, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_64.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_64);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_64.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_64' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_64);
          wagmp_map_1_obj.icons.push(icon_64);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_65 = new GIcon();
    icon_65.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_65.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_65.iconSize = new GSize(34,35);
    icon_65.shadowSize = new GSize(34,35);
    icon_65.iconAnchor = new GPoint(9,33);
    icon_65.infoWindowAnchor = new GPoint(19,0);
    icon_65.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_65.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_65.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_65.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_65 = {
      street: '4450 Chisholm Road',
      city: 'Florence',
      state: 'AL',
      zip: '35633',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Affordable Beach Properties<br />4450 Chisholm Road<br />Florence, AL 35633 USA</span>',
      full: '4450 Chisholm Road, Florence, AL, 35633, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_65.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_65);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_65.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_65' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_65);
          wagmp_map_1_obj.icons.push(icon_65);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_66 = new GIcon();
    icon_66.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_66.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_66.iconSize = new GSize(34,35);
    icon_66.shadowSize = new GSize(34,35);
    icon_66.iconAnchor = new GPoint(9,33);
    icon_66.infoWindowAnchor = new GPoint(19,0);
    icon_66.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_66.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_66.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_66.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_66 = {
      street: '2401 Old Shell Road',
      city: 'Mobile',
      state: 'AL',
      zip: '36607',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">The Ivy Cottage<br />2401 Old Shell Road<br />Mobile, AL 36607 USA</span>',
      full: '2401 Old Shell Road, Mobile, AL, 36607, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_66.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_66);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_66.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_66' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_66);
          wagmp_map_1_obj.icons.push(icon_66);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_67 = new GIcon();
    icon_67.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_67.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_67.iconSize = new GSize(34,35);
    icon_67.shadowSize = new GSize(34,35);
    icon_67.iconAnchor = new GPoint(9,33);
    icon_67.infoWindowAnchor = new GPoint(19,0);
    icon_67.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_67.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_67.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_67.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_67 = {
      street: '2 Viale Trentino',
      city: 'Fairhope',
      state: 'AL',
      zip: '36532',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Trentino of Fairhope<br />2 Viale Trentino<br />Fairhope, AL 36532 USA</span>',
      full: '2 Viale Trentino, Fairhope, AL, 36532, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_67.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_67);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_67.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_67' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_67);
          wagmp_map_1_obj.icons.push(icon_67);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_68 = new GIcon();
    icon_68.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_68.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_68.iconSize = new GSize(34,35);
    icon_68.shadowSize = new GSize(34,35);
    icon_68.iconAnchor = new GPoint(9,33);
    icon_68.infoWindowAnchor = new GPoint(19,0);
    icon_68.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_68.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_68.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_68.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_68 = {
      street: 'PO Box 9204',
      city: 'Mobile',
      state: 'AL',
      zip: '36691',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Fellowship Guide Services<br />PO Box 9204<br />Mobile, AL 36691 USA</span>',
      full: 'PO Box 9204, Mobile, AL, 36691, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_68.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_68);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_68.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_68' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_68);
          wagmp_map_1_obj.icons.push(icon_68);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_69 = new GIcon();
    icon_69.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_69.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_69.iconSize = new GSize(34,35);
    icon_69.shadowSize = new GSize(34,35);
    icon_69.iconAnchor = new GPoint(9,33);
    icon_69.infoWindowAnchor = new GPoint(19,0);
    icon_69.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_69.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_69.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_69.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_69 = {
      street: 'PO Box 7550',
      city: 'Oxford',
      state: 'AL',
      zip: '36203',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Southern Dream Weddings<br />PO Box 7550<br />Oxford, AL 36203 USA</span>',
      full: 'PO Box 7550, Oxford, AL, 36203, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_69.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_69);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_69.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_69' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_69);
          wagmp_map_1_obj.icons.push(icon_69);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_70 = new GIcon();
    icon_70.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_70.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_70.iconSize = new GSize(34,35);
    icon_70.shadowSize = new GSize(34,35);
    icon_70.iconAnchor = new GPoint(9,33);
    icon_70.infoWindowAnchor = new GPoint(19,0);
    icon_70.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_70.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_70.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_70.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_70 = {
      street: '1301 Azalea Road',
      city: 'Mobile',
      state: 'AL',
      zip: '36693',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Zeigler Asset Protection<br />1301 Azalea Road<br />Mobile, AL 36693 USA</span>',
      full: '1301 Azalea Road, Mobile, AL, 36693, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_70.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_70);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_70.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_70' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_70);
          wagmp_map_1_obj.icons.push(icon_70);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_71 = new GIcon();
    icon_71.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_71.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_71.iconSize = new GSize(34,35);
    icon_71.shadowSize = new GSize(34,35);
    icon_71.iconAnchor = new GPoint(9,33);
    icon_71.infoWindowAnchor = new GPoint(19,0);
    icon_71.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_71.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_71.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_71.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_71 = {
      street: '8161 Theodore Dawes Road',
      city: 'Theodore',
      state: 'AL',
      zip: '36582',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Gulf Coast Fabricators, Inc<br />8161 Theodore Dawes Road<br />Theodore, AL 36582 USA</span>',
      full: '8161 Theodore Dawes Road, Theodore, AL, 36582, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_71.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_71);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_71.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_71' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_71);
          wagmp_map_1_obj.icons.push(icon_71);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_72 = new GIcon();
    icon_72.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_72.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_72.iconSize = new GSize(34,35);
    icon_72.shadowSize = new GSize(34,35);
    icon_72.iconAnchor = new GPoint(9,33);
    icon_72.infoWindowAnchor = new GPoint(19,0);
    icon_72.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_72.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_72.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_72.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_72 = {
      street: '1100A Dauphin Street',
      city: 'Mobile',
      state: 'AL',
      zip: '36604',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Pixallure Design<br />1100A Dauphin Street<br />Mobile, AL 36604 USA</span>',
      full: '1100A Dauphin Street, Mobile, AL, 36604, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_72.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_72);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_72.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_72' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_72);
          wagmp_map_1_obj.icons.push(icon_72);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_73 = new GIcon();
    icon_73.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_73.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_73.iconSize = new GSize(34,35);
    icon_73.shadowSize = new GSize(34,35);
    icon_73.iconAnchor = new GPoint(9,33);
    icon_73.infoWindowAnchor = new GPoint(19,0);
    icon_73.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_73.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_73.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_73.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_73 = {
      street: '4601 Old US Hwy 31 S.',
      city: 'Decatur',
      state: 'AL',
      zip: '35603',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Lighthouse Landing<br />4601 Old US Hwy 31 S.<br />Decatur, AL 35603 USA</span>',
      full: '4601 Old US Hwy 31 S., Decatur, AL, 35603, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_73.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_73);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_73.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_73' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_73);
          wagmp_map_1_obj.icons.push(icon_73);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_74 = new GIcon();
    icon_74.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_74.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_74.iconSize = new GSize(34,35);
    icon_74.shadowSize = new GSize(34,35);
    icon_74.iconAnchor = new GPoint(9,33);
    icon_74.infoWindowAnchor = new GPoint(19,0);
    icon_74.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_74.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_74.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_74.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_74 = {
      street: '604 Highway 80 West Suite M',
      city: 'Clinton',
      state: 'MS',
      zip: '39060',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">C. Rodney Cummins CPA<br />604 Highway 80 West Suite M<br />Clinton, MS 39060 USA</span>',
      full: '604 Highway 80 West Suite M, Clinton, MS, 39060, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_74.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_74);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_74.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_74' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_74);
          wagmp_map_1_obj.icons.push(icon_74);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_75 = new GIcon();
    icon_75.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_75.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_75.iconSize = new GSize(34,35);
    icon_75.shadowSize = new GSize(34,35);
    icon_75.iconAnchor = new GPoint(9,33);
    icon_75.infoWindowAnchor = new GPoint(19,0);
    icon_75.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_75.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_75.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_75.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_75 = {
      street: '2416 Greensprings Highway',
      city: 'Birmingham',
      state: 'AL',
      zip: '35209',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Nexcheck<br />2416 Greensprings Highway<br />Birmingham, AL 35209 USA</span>',
      full: '2416 Greensprings Highway, Birmingham, AL, 35209, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_75.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_75);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_75.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_75' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_75);
          wagmp_map_1_obj.icons.push(icon_75);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_76 = new GIcon();
    icon_76.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_76.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_76.iconSize = new GSize(34,35);
    icon_76.shadowSize = new GSize(34,35);
    icon_76.iconAnchor = new GPoint(9,33);
    icon_76.infoWindowAnchor = new GPoint(19,0);
    icon_76.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_76.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_76.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_76.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_76 = {
      street: '3155 Highway 65 South',
      city: 'Eudora',
      state: 'AR',
      zip: '71640',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Harvest Select Catfish<br />3155 Highway 65 South<br />Eudora, AR 71640 USA</span>',
      full: '3155 Highway 65 South, Eudora, AR, 71640, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_76.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_76);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_76.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_76' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_76);
          wagmp_map_1_obj.icons.push(icon_76);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_77 = new GIcon();
    icon_77.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_77.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_77.iconSize = new GSize(34,35);
    icon_77.shadowSize = new GSize(34,35);
    icon_77.iconAnchor = new GPoint(9,33);
    icon_77.infoWindowAnchor = new GPoint(19,0);
    icon_77.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_77.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_77.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_77.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_77 = {
      street: '2008 Airport Boulevard',
      city: 'Mobile',
      state: 'AL',
      zip: '36606',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Palmer Studio<br />2008 Airport Boulevard<br />Mobile, AL 36606 USA</span>',
      full: '2008 Airport Boulevard, Mobile, AL, 36606, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_77.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_77);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_77.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_77' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_77);
          wagmp_map_1_obj.icons.push(icon_77);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_78 = new GIcon();
    icon_78.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_78.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_78.iconSize = new GSize(34,35);
    icon_78.shadowSize = new GSize(34,35);
    icon_78.iconAnchor = new GPoint(9,33);
    icon_78.infoWindowAnchor = new GPoint(19,0);
    icon_78.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_78.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_78.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_78.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_78 = {
      street: '34764 Doane Valley Road',
      city: 'Palomar Mountain',
      state: 'CA',
      zip: '92060',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Palomar Christian Conference Center<br />34764 Doane Valley Road<br />Palomar Mountain, CA 92060 USA</span>',
      full: '34764 Doane Valley Road, Palomar Mountain, CA, 92060, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_78.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_78);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_78.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_78' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_78);
          wagmp_map_1_obj.icons.push(icon_78);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_79 = new GIcon();
    icon_79.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_79.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_79.iconSize = new GSize(34,35);
    icon_79.shadowSize = new GSize(34,35);
    icon_79.iconAnchor = new GPoint(9,33);
    icon_79.infoWindowAnchor = new GPoint(19,0);
    icon_79.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_79.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_79.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_79.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_79 = {
      street: '801 Executive Park Dr # 102',
      city: 'Mobile',
      state: 'AL',
      zip: '36606',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Costal Human Resources Group<br />801 Executive Park Dr # 102<br />Mobile, AL 36606 USA</span>',
      full: '801 Executive Park Dr # 102, Mobile, AL, 36606, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_79.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_79);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_79.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_79' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_79);
          wagmp_map_1_obj.icons.push(icon_79);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_80 = new GIcon();
    icon_80.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_80.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_80.iconSize = new GSize(34,35);
    icon_80.shadowSize = new GSize(34,35);
    icon_80.iconAnchor = new GPoint(9,33);
    icon_80.infoWindowAnchor = new GPoint(19,0);
    icon_80.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_80.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_80.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_80.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_80 = {
      street: '3958 Airport Blvd',
      city: 'Mobile',
      state: 'AL',
      zip: '36608',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Tiny Town, Inc.<br />3958 Airport Blvd<br />Mobile, AL 36608 USA</span>',
      full: '3958 Airport Blvd, Mobile, AL, 36608, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_80.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_80);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_80.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_80' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_80);
          wagmp_map_1_obj.icons.push(icon_80);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_81 = new GIcon();
    icon_81.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_81.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_81.iconSize = new GSize(34,35);
    icon_81.shadowSize = new GSize(34,35);
    icon_81.iconAnchor = new GPoint(9,33);
    icon_81.infoWindowAnchor = new GPoint(19,0);
    icon_81.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_81.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_81.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_81.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_81 = {
      street: '1663 Montgomery Hwy',
      city: 'Dothan',
      state: 'AL',
      zip: '36303',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Circle City Glass<br />1663 Montgomery Hwy<br />Dothan, AL 36303 USA</span>',
      full: '1663 Montgomery Hwy, Dothan, AL, 36303, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_81.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_81);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_81.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_81' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_81);
          wagmp_map_1_obj.icons.push(icon_81);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_82 = new GIcon();
    icon_82.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_82.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_82.iconSize = new GSize(34,35);
    icon_82.shadowSize = new GSize(34,35);
    icon_82.iconAnchor = new GPoint(9,33);
    icon_82.infoWindowAnchor = new GPoint(19,0);
    icon_82.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_82.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_82.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_82.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_82 = {
      street: '201 N Hamilton St',
      city: 'Mobile',
      state: 'AL',
      zip: '36603',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Christian Benevolent Funeral Home<br />201 N Hamilton St<br />Mobile, AL 36603 USA</span>',
      full: '201 N Hamilton St, Mobile, AL, 36603, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_82.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_82);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_82.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_82' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_82);
          wagmp_map_1_obj.icons.push(icon_82);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_83 = new GIcon();
    icon_83.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_83.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_83.iconSize = new GSize(34,35);
    icon_83.shadowSize = new GSize(34,35);
    icon_83.iconAnchor = new GPoint(9,33);
    icon_83.infoWindowAnchor = new GPoint(19,0);
    icon_83.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_83.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_83.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_83.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_83 = {
      street: '358 Saint Louis St',
      city: 'Mobile',
      state: 'AL',
      zip: '36602',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Threaded Fasteners, Inc.<br />358 Saint Louis St<br />Mobile, AL 36602 USA</span>',
      full: '358 Saint Louis St, Mobile, AL, 36602, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_83.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_83);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_83.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_83' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_83);
          wagmp_map_1_obj.icons.push(icon_83);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_84 = new GIcon();
    icon_84.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_84.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_84.iconSize = new GSize(34,35);
    icon_84.shadowSize = new GSize(34,35);
    icon_84.iconAnchor = new GPoint(9,33);
    icon_84.infoWindowAnchor = new GPoint(19,0);
    icon_84.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_84.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_84.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_84.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_84 = {
      street: '3700 Salem Rd',
      city: 'Enterprise',
      state: 'AL',
      zip: '36330',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Communications & Ear Protection, Inc.<br />3700 Salem Rd<br />Enterprise, AL 36330 USA</span>',
      full: '3700 Salem Rd, Enterprise, AL, 36330, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_84.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_84);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_84.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_84' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_84);
          wagmp_map_1_obj.icons.push(icon_84);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_85 = new GIcon();
    icon_85.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_85.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_85.iconSize = new GSize(34,35);
    icon_85.shadowSize = new GSize(34,35);
    icon_85.iconAnchor = new GPoint(9,33);
    icon_85.infoWindowAnchor = new GPoint(19,0);
    icon_85.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_85.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_85.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_85.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_85 = {
      street: '505 N Mills Ave # 100',
      city: 'Orlando',
      state: 'FL',
      zip: '32803',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Newbanks, Inc<br />505 N Mills Ave # 100<br />Orlando, FL 32803 USA</span>',
      full: '505 N Mills Ave # 100, Orlando, FL, 32803, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_85.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_85);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_85.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_85' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_85);
          wagmp_map_1_obj.icons.push(icon_85);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_86 = new GIcon();
    icon_86.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_86.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_86.iconSize = new GSize(34,35);
    icon_86.shadowSize = new GSize(34,35);
    icon_86.iconAnchor = new GPoint(9,33);
    icon_86.infoWindowAnchor = new GPoint(19,0);
    icon_86.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_86.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_86.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_86.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_86 = {
      street: '12738 County Road 65',
      city: 'Foley',
      state: 'AL',
      zip: '36535',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">M & M South Baldwin Electric<br />12738 County Road 65<br />Foley, AL 36535 USA</span>',
      full: '12738 County Road 65, Foley, AL, 36535, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_86.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_86);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_86.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_86' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_86);
          wagmp_map_1_obj.icons.push(icon_86);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_87 = new GIcon();
    icon_87.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_87.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_87.iconSize = new GSize(34,35);
    icon_87.shadowSize = new GSize(34,35);
    icon_87.iconAnchor = new GPoint(9,33);
    icon_87.infoWindowAnchor = new GPoint(19,0);
    icon_87.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_87.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_87.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_87.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_87 = {
      street: '118 East Moulton Street',
      city: 'Decatur',
      state: 'AL',
      zip: '35601',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">North Alabama Sand and Gravel<br />118 East Moulton Street<br />Decatur, AL 35601 USA</span>',
      full: '118 East Moulton Street, Decatur, AL, 35601, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_87.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_87);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_87.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_87' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_87);
          wagmp_map_1_obj.icons.push(icon_87);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_88 = new GIcon();
    icon_88.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_88.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_88.iconSize = new GSize(34,35);
    icon_88.shadowSize = new GSize(34,35);
    icon_88.iconAnchor = new GPoint(9,33);
    icon_88.infoWindowAnchor = new GPoint(19,0);
    icon_88.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_88.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_88.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_88.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_88 = {
      street: '5514 East Hampton Drive',
      city: 'Houston',
      state: 'TX',
      zip: '77039',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Blastco Texas, Inc.<br />5514 East Hampton Drive<br />Houston, TX 77039 USA</span>',
      full: '5514 East Hampton Drive, Houston, TX, 77039, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_88.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_88);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_88.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_88' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_88);
          wagmp_map_1_obj.icons.push(icon_88);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_89 = new GIcon();
    icon_89.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_89.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_89.iconSize = new GSize(34,35);
    icon_89.shadowSize = new GSize(34,35);
    icon_89.iconAnchor = new GPoint(9,33);
    icon_89.infoWindowAnchor = new GPoint(19,0);
    icon_89.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_89.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_89.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_89.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_89 = {
      street: '',
      city: 'Brantford',
      state: 'Ontario',
      zip: '',
      country: 'Canada',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Brantford, Ontario  Canada</span>',
      full: 'Brantford, Ontario, Canada',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_89.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_89);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_89.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_89' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_89);
          wagmp_map_1_obj.icons.push(icon_89);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_90 = new GIcon();
    icon_90.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_90.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_90.iconSize = new GSize(34,35);
    icon_90.shadowSize = new GSize(34,35);
    icon_90.iconAnchor = new GPoint(9,33);
    icon_90.infoWindowAnchor = new GPoint(19,0);
    icon_90.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_90.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_90.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_90.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_90 = {
      street: '',
      city: 'Brantford',
      state: 'Ontario',
      zip: '',
      country: 'Canada',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Brantford, Ontario  Canada</span>',
      full: 'Brantford, Ontario, Canada',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_90.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_90);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_90.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_90' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_90);
          wagmp_map_1_obj.icons.push(icon_90);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_91 = new GIcon();
    icon_91.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.png';
    icon_91.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_91.iconSize = new GSize(34,35);
    icon_91.shadowSize = new GSize(34,35);
    icon_91.iconAnchor = new GPoint(9,33);
    icon_91.infoWindowAnchor = new GPoint(19,0);
    icon_91.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_91.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_91.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_91.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_91 = {
      street: '1240 Highway 43 North',
      city: 'Axis',
      state: 'AL',
      zip: '36505',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Blastech Mobile, LLC<br />1240 Highway 43 North<br />Axis, AL 36505 USA</span>',
      full: '1240 Highway 43 North, Axis, AL, 36505, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_91.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_91);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_91.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_91' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_91);
          wagmp_map_1_obj.icons.push(icon_91);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_92 = new GIcon();
    icon_92.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon_92.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon_92.iconSize = new GSize(31,35);
    icon_92.shadowSize = new GSize(31,35);
    icon_92.iconAnchor = new GPoint(4,27);
    icon_92.infoWindowAnchor = new GPoint(8,3);
    icon_92.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon_92.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon_92.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_92.transparent = 'http://google.webassist.com/google/markers/flag/pacifica_transparent.png';
    
    var address_92 = {
      street: '3661 Dauphin Street',
      city: 'Mobile',
      state: 'AL',
      zip: '36608',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Dauphin Way Baptist Church<br />3661 Dauphin Street<br />Mobile, AL 36608 USA</span>',
      full: '3661 Dauphin Street, Mobile, AL, 36608, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Flag',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_92.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_92);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_92.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_92' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_92);
          wagmp_map_1_obj.icons.push(icon_92);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_93 = new GIcon();
    icon_93.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon_93.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon_93.iconSize = new GSize(31,35);
    icon_93.shadowSize = new GSize(31,35);
    icon_93.iconAnchor = new GPoint(4,27);
    icon_93.infoWindowAnchor = new GPoint(8,3);
    icon_93.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon_93.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon_93.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_93.transparent = 'http://google.webassist.com/google/markers/flag/pacifica_transparent.png';
    
    var address_93 = {
      street: '630 Avenue A',
      city: 'York',
      state: 'AL',
      zip: '36925',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Black Belt Designs<br />630 Avenue A<br />York, AL 36925</span>',
      full: '630 Avenue A, York, AL, 36925',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Flag',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_93.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_93);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_93.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_93' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_93);
          wagmp_map_1_obj.icons.push(icon_93);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_94 = new GIcon();
    icon_94.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon_94.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon_94.iconSize = new GSize(31,35);
    icon_94.shadowSize = new GSize(31,35);
    icon_94.iconAnchor = new GPoint(4,27);
    icon_94.infoWindowAnchor = new GPoint(8,3);
    icon_94.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon_94.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon_94.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_94.transparent = 'http://google.webassist.com/google/markers/flag/pacifica_transparent.png';
    
    var address_94 = {
      street: '912 US Highway 98',
      city: 'Daphne',
      state: 'AL',
      zip: '36526',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Buyers Market Edge<br />912 US Highway 98<br />Daphne, AL 36526 USA</span>',
      full: '912 US Highway 98, Daphne, AL, 36526, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Flag',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_94.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_94);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_94.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_94' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_94);
          wagmp_map_1_obj.icons.push(icon_94);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_95 = new GIcon();
    icon_95.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon_95.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon_95.iconSize = new GSize(31,35);
    icon_95.shadowSize = new GSize(31,35);
    icon_95.iconAnchor = new GPoint(4,27);
    icon_95.infoWindowAnchor = new GPoint(8,3);
    icon_95.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon_95.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon_95.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_95.transparent = 'http://google.webassist.com/google/markers/flag/pacifica_transparent.png';
    
    var address_95 = {
      street: '1 S. Water Street',
      city: 'Mobilw',
      state: 'AL',
      zip: '36602',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Whats Up Mobile.com <br />1 S. Water Street<br />Mobilw, AL 36602 USA</span>',
      full: '1 S. Water Street, Mobilw, AL, 36602, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Flag',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_95.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_95);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_95.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_95' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_95);
          wagmp_map_1_obj.icons.push(icon_95);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_96 = new GIcon();
    icon_96.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon_96.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon_96.iconSize = new GSize(31,35);
    icon_96.shadowSize = new GSize(31,35);
    icon_96.iconAnchor = new GPoint(4,27);
    icon_96.infoWindowAnchor = new GPoint(8,3);
    icon_96.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon_96.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon_96.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_96.transparent = 'http://google.webassist.com/google/markers/flag/pacifica_transparent.png';
    
    var address_96 = {
      street: '2370 Hillcrest Rd',
      city: 'Mobile',
      state: 'AL',
      zip: '36695',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Renee Smith, Wedding Planner <br />2370 Hillcrest Rd<br />Mobile, AL 36695 USA</span>',
      full: '2370 Hillcrest Rd, Mobile, AL, 36695, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Flag',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_96.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_96);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_96.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_96' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_96);
          wagmp_map_1_obj.icons.push(icon_96);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_97 = new GIcon();
    icon_97.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon_97.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon_97.iconSize = new GSize(31,35);
    icon_97.shadowSize = new GSize(31,35);
    icon_97.iconAnchor = new GPoint(4,27);
    icon_97.infoWindowAnchor = new GPoint(8,3);
    icon_97.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon_97.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon_97.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_97.transparent = 'http://google.webassist.com/google/markers/flag/pacifica_transparent.png';
    
    var address_97 = {
      street: '57 Onondaga Rd',
      city: 'Brantford',
      state: 'Ontario',
      zip: 'N3T 5W4',
      country: 'Canada',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Blastech Corporation<br />57 Onondaga Rd<br />Brantford, Ontario N3T 5W4 Canada</span>',
      full: '57 Onondaga Rd, Brantford, Ontario, N3T 5W4, Canada',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Flag',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_97.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_97);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_97.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_97' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_97);
          wagmp_map_1_obj.icons.push(icon_97);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_98 = new GIcon();
    icon_98.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon_98.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon_98.iconSize = new GSize(31,35);
    icon_98.shadowSize = new GSize(31,35);
    icon_98.iconAnchor = new GPoint(4,27);
    icon_98.infoWindowAnchor = new GPoint(8,3);
    icon_98.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon_98.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon_98.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_98.transparent = 'http://google.webassist.com/google/markers/flag/pacifica_transparent.png';
    
    var address_98 = {
      street: '95 Darling Street',
      city: 'Brantford',
      state: 'ON',
      zip: 'N3T 2K7',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Blastech Transportation<br />95 Darling Street<br />Brantford, ON N3T 2K7 USA</span>',
      full: '95 Darling Street, Brantford, ON, N3T 2K7, USA',
      isdefault: false,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Flag',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_98.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_98);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_98.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_98' != 'address_98') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_98);
          wagmp_map_1_obj.icons.push(icon_98);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();

    var icon_99 = new GIcon();
    icon_99.image = 'http://google.webassist.com/google/markers/star/desertspice.png';
    icon_99.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon_99.iconSize = new GSize(29,39);
    icon_99.shadowSize = new GSize(29,39);
    icon_99.iconAnchor = new GPoint(15,15);
    icon_99.infoWindowAnchor = new GPoint(19,7);
    icon_99.printImage = 'http://google.webassist.com/google/markers/star/desertspice.gif';
    icon_99.mozPrintImage = 'http://google.webassist.com/google/markers/star/desertspice_mozprint.png';
    icon_99.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon_99.transparent = 'http://google.webassist.com/google/markers/star/desertspice_transparent.png';
    
    var address_99 = {
      street: '3091 Richmond Dr.',
      city: 'Mobile',
      state: 'AL',
      zip: '36695',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Magnolia Media, LLC<br />3091 Richmond Dr.<br />Mobile, AL 36695 USA</span>',
      full: '3091 Richmond Dr., Mobile, AL, 36695, USA',
      isdefault: true,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      markerStyle: 'Star',
      markerColor: 'Desert Spice'      
    };
    
    geocoder.getLatLng (
      address_99.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_99);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_99.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_99' != 'address_98') {
            map.setCenter(point, 3);
            map.addOverlay(marker);
            marker.openInfoWindowHtml(address_99.infowindowtext);
          }
          wagmp_map_1_obj.markers.push(marker);
          wagmp_map_1_obj.addresses.push(address_99);
          wagmp_map_1_obj.icons.push(icon_99);
          wagmp_map_1_obj.points.push(point);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -95.1419), 3);
        }
      }
    );
     waitForGeo();


  }
}