function wagt_map_1() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_1')) return false;
    var map = new GMap2(document.getElementById('wagt_map_1'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallMapControl());
    map.addControl(new GMapTypeControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Google Traditional (flat)';
    var markerColor = 'Desert Spice';
    icon.image = 'http://google.webassist.com/google/markers/traditionalflat/desertspice.png';
    icon.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon.iconSize = new GSize(34,35);
    icon.shadowSize = new GSize(34,35);
    icon.iconAnchor = new GPoint(9,23);
    icon.infoWindowAnchor = new GPoint(19,0);
    icon.printImage = 'http://google.webassist.com/google/markers/traditionalflat/desertspice.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/desertspice_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalflat/desertspice_transparent.png';

    var address_0 = {
      street: '1 Paul Wayne Haggerty Road',
      city: 'Bridgeport',
      state: 'WV',
      zip: '26330',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>WWTP</strong></span>',
      full: '1 Paul Wayne Haggerty Road, Bridgeport, WV, 26330',
      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: '1200 Johnson Ave.',
      city: 'Bridgeport',
      state: 'WV',
      zip: '26330',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Library</strong><br />1200 Johnson Ave.<br />Bridgeport, WV 26330</span>',
      full: '1200 Johnson Ave., Bridgeport, WV, 26330',
      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: '131 West Main Street',
      city: 'Bridgeport',
      state: 'WV',
      zip: '26330',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Fire Department</strong><br />131 West Main Street<br />Bridgeport, WV 26330</span>',
      full: '131 West Main Street, Bridgeport, WV, 26330',
      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: '400 Benedum Drive',
      city: 'Bridgeport',
      state: 'WV',
      zip: '26330',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Cemetery</strong><br />400 Benedum Drive<br />Bridgeport, WV 26330</span>',
      full: '400 Benedum Drive, Bridgeport, WV, 26330',
      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: '164 West Main Street',
      city: 'Bridgeport',
      state: 'WV',
      zip: '26330',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Civic Center</strong><br /><strong>Parks and Rec</strong><br /><strong>GBCVC</strong><br />164 West Main Street<br />Bridgeport, WV 26330</span>',
      full: '164 West Main Street, Bridgeport, WV, 26330',
      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: '515 West Main Street',
      city: 'Bridgeport',
      state: 'WV',
      zip: '26330',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>City Hall - Police Department</strong><br />515 West Main Street<br />Bridgeport, WV 26330</span>',
      full: '515 West Main Street, Bridgeport, WV, 26330',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_5.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_5.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_5.infowindowtext);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

  }
}
