function wagt_map_62() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_62')) return false;
    var map = new GMap2(document.getElementById('wagt_map_62'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallMapControl());
    map.addControl(new GMapTypeControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Star';
    var markerColor = 'Desert Spice';
    icon.image = 'http://google.webassist.com/google/markers/star/desertspice.png';
    icon.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon.iconSize = new GSize(29,39);
    icon.shadowSize = new GSize(29,39);
    icon.iconAnchor = new GPoint(15,15);
    icon.infoWindowAnchor = new GPoint(19,7);
    icon.printImage = 'http://google.webassist.com/google/markers/star/desertspice.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/star/desertspice_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/star/desertspice_transparent.png';

    var address_0 = {
      street: '1100 Rosser St',
      city: 'Ft Worth',
      state: 'TX',
      zip: '76112',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Shelter Distribution<br /> Ft Worth </strong><br />1100 Rosser St.<br />Ft Worth, TX, 76112<br /><br /><a href="Ft_Worth2.html"><strong>Visit This Location</strong></a></span>',
      full: '1100 Rosser St, Ft Worth, TX, 76112',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_0.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_1 = {
      street: '3110 Jupiter Road S',
      city: 'Garland',
      state: 'TX',
      zip: '75041',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Shelter Distribution<br /> Garland </strong><br />3110 Jupiter Road S<br />Garland, TX, 75041<br /><a href="Garland.html"><strong>Visit This Location</strong></a></span>',
      full: '3110 Jupiter Road S, Garland, TX, 75041',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_1.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_1.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_2 = {
      street: '6801 Imperial Dr.',
      city: 'Waco',
      state: 'TX',
      zip: '76712',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Shelter Distribution<br /> Waco </strong><br />6801 Imperial Dr.<br />Waco, TX, 76712<br /><a href="Waco.html"><strong>Visit This Location</strong></a></span>',
      full: '6801 Imperial Dr., Waco, TX, 76712',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_2.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_2.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_3 = {
      street: '1602 Lavon Dr.',
      city: 'McKinney',
      state: 'TX',
      zip: '75069',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Shelter Distribution<br /> McKinney </strong><br />1602 Lavon Dr.,<br />McKinney, TX, 75069<br /><a href="McKinney.html"><strong>Visit This Location</strong></a></span>',
      full: '1602 Lavon Dr., McKinney, TX, 75069',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_3.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_3.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_4 = {
      street: '4200 I-40 East',
      city: 'Amarillo',
      state: 'TX',
      zip: '79103',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Shelter Distribution<br /> Amarillo </strong><br />4200 I-40 East<br />Amarillo, TX, 79103<br /><a href="Amarillo.html"><strong>Visit This Location</strong></a></span>',
      full: '4200 I-40 East, Amarillo, TX, 79103',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_4.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_4.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_5 = {
      street: '110 N. Hancock Ave',
      city: 'Odessa',
      state: 'TX',
      zip: '79763',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Shelter Distribution<br /> Odessa </strong><br />11601 West County Road 125<br />Odessa, TX, 79765<br /><a href="Odessa.html"><strong>Visit This Location</strong></a></span>',
      full: '110 N. Hancock Ave, Odessa, TX, 79763',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_5.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_5.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_6 = {
      street: '300 N. Britain Rd.',
      city: 'Irving',
      state: 'TX',
      zip: '75061',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Shelter Distribution<br /> Irving </strong><br />300 N. Britain Rd.<br />Irving, TX, 75061<br /><a href="Irving.html"><strong>Visit This Location</strong></a></span>',
      full: '300 N. Britain Rd., Irving, TX, 75061',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_6.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_6.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_7 = {
      street: '1145 S. Louise St',
      city: 'Fort Worth',
      state: 'TX',
      zip: '76112',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Shelter Distribution<br /> Fort Worth </strong><br />1145 S. Louise St<br />Fort Worth, TX, 76112<br /><a href="Fort_Worth.html"><strong>Visit This Location</strong></a></span>',
      full: '1145 S. Louise St, Fort Worth, TX, 76112',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_7.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_7.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_8 = {
      street: '5447 South 1st Street',
      city: 'Abilene',
      state: 'TX',
      zip: '79605',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Shelter Distribution<br /> Abilene </strong><br />5447 South 1st St.<br />Abilene, TX, 79605<br /><a href="Abilene.html"><strong>Visit This Location</strong></a></span>',
      full: '5447 South 1st Street, Abilene, TX, 79605',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_8.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_8.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_8.infowindowtext);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

  }
}
