function wagt_map_1() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_1')) return false;
    var map = new GMap2(document.getElementById('wagt_map_1'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GLargeMapControl());
    map.addControl(new GOverviewMapControl());
    var geocoder = new GClientGeocoder();
    
    var icon = new GIcon();
    var markerStyle = 'Push-Pin';
    var markerColor = 'Poppy';
    icon.image = 'http://google.webassist.com/google/markers/pushpin/poppy.png';
    icon.shadow = 'http://google.webassist.com/google/markers/pushpin/shadow.png';
    icon.iconSize = new GSize(40,41);
    icon.shadowSize = new GSize(40,41);
    icon.iconAnchor = new GPoint(7,38);
    icon.infoWindowAnchor = new GPoint(26,4);
    icon.printImage = 'http://google.webassist.com/google/markers/pushpin/poppy.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/pushpin/poppy_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/pushpin/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/pushpin/poppy_transparent.png';

    var address_0 = {
      street: '900 Viterbo Drive',
      city: 'La Crosse',
      state: 'WI',
      zip: '54601',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Viterbo University</strong><br />900 Viterbo Drive<br />La Crosse, WI 54601</span>',
      full: '900 Viterbo Drive, La Crosse, WI, 54601',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_0.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_0.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

    var address_1 = {
      street: 'W7665 Sylvester Road',
      city: 'Holmen',
      state: 'WI',
      zip: '54636',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Drugan\'s Castle Mound</strong><br />W7665 Sylvester Road<br />Holmen, WI 54636</span>',
      full: 'W7665 Sylvester Road, Holmen, WI, 54636',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_1.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_1.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

    var address_2 = {
      street: '101 Sky Harbour Drive',
      city: 'La Crosse',
      state: 'WI',
      zip: '54603',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Days Inn</strong><br />101 Sky Harbour Drive<br />La Crosse, WI 54603</span>',
      full: '101 Sky Harbour Drive, La Crosse, WI, 54603',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_2.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_2.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

    var address_3 = {
      street: '410 Veterans Memorial Dr',
      city: 'La Crosse',
      state: 'WI',
      zip: '54601',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>International Gardens :</strong><br />410 Veterans Memorial Dr<br />La Crosse, WI 54601</span>',
      full: '410 Veterans Memorial Dr, La Crosse, WI, 54601',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_3.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_3.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

    var address_4 = {
      street: '300 Harborview Plaza',
      city: 'La Crosse',
      state: 'WI',
      zip: '54601',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>La Crosse Center Ballroom:</strong><br />300 Harborview Plaza<br />La Crosse, WI 54601</span>',
      full: '300 Harborview Plaza, La Crosse, WI, 54601',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_4.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_4.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

    var address_5 = {
      street: '600 Losey Blvd. N.',
      city: 'La Crosse',
      state: 'WI',
      zip: '54601',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Forest Hills Golf Course</strong><br />600 Losey Blvd. N.<br />La Crosse, WI 54601</span>',
      full: '600 Losey Blvd. N., La Crosse, WI, 54601',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_5.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_5.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

    var address_6 = {
      street: '333 Park Plaza Drive',
      city: 'La Crosse',
      state: 'WI',
      zip: '54601',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Pettibones:</strong><br />333 Park Plaza Drive<br />La Crosse, WI 54601</span>',
      full: '333 Park Plaza Drive, La Crosse, WI, 54601',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_6.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_6.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

    var address_7 = {
      street: '3060 Kinney Coulee Rd. S.',
      city: 'Onalaska',
      state: 'WI',
      zip: '54650',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Stoney Creek Inn</strong><br />3060 Kinney Coulee Rd. S.<br />Onalaska, WI 54650</span>',
      full: '3060 Kinney Coulee Rd. S., Onalaska, WI, 54650',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_7.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_7.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

    var address_8 = {
      street: 'W4142 Co B.',
      city: 'West Salem',
      state: 'WI',
      zip: '54669',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Maple Grove Country Club</strong><br />W4142 Co B.<br />West Salem, WI 54669</span>',
      full: 'W4142 Co B., West Salem, WI, 54669',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_8.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_8.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

    var address_9 = {
      street: '200 Harborview Plaza ',
      city: 'La Crosse',
      state: 'WI',
      zip: '54601',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Radisson Hotel</strong><br />200 Harborview Plaza <br />La Crosse, WI 54601</span>',
      full: '200 Harborview Plaza, La Crosse, WI, 54601',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_9.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_9.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

    var address_10 = {
      street: '1835 Rose Street',
      city: 'La Crosse',
      state: 'WI',
      zip: '54603',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Best Western</strong><br />1835 Rose Street<br />La Crosse, WI 54603</span>',
      full: '1835 Rose Street, La Crosse, WI, 54603',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_10.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_10.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

    var address_11 = {
      street: '501 Front Street',
      city: 'La Crosse',
      state: 'WI',
      zip: '54601',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Piggy\'s</strong><br />501 Front Street<br />La Crosse, WI 54601</span>',
      full: '501 Front Street, La Crosse, WI, 54601',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_11.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_11.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

    var address_12 = {
      street: 'N3287 Cty. Trunk OA',
      city: 'La Crosse',
      state: 'WI',
      zip: '54601',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Fox Hollow</strong><br />N3287 Cty. Trunk OA<br />La Crosse, WI 54601</span>',
      full: 'N3287 Cty. Trunk OA, La Crosse, WI, 54601',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_12.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_12.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

    var address_13 = {
      street: '255 Riders Club Rd.',
      city: 'Onalaska',
      state: 'WI',
      zip: '54650',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Onalaska Omni Center</strong><br />255 Riders Club Rd.<br />Onalaska, WI 54650</span>',
      full: '255 Riders Club Rd., Onalaska, WI, 54650',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_13.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_13.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

    var address_14 = {
      street: '11332 Main St.',
      city: 'Trempealeau',
      state: 'WI',
      zip: '54661',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Trempealeau/Perot Park</strong><br />11332 Main St.<br />Trempealeau, WI 54661</span>',
      full: '11332 Main St., Trempealeau, WI, 54661',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_14.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_14.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

    var address_15 = {
      street: '2600 Cedar Creek Lane',
      city: 'Onalaska',
      state: 'WI',
      zip: '54650',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Cedar Creek</strong><br />2600 Cedar Creek Lane<br />Onalaska, WI 54650</span>',
      full: '2600 Cedar Creek Lane, Onalaska, WI, 54650',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_15.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_15.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

    var address_16 = {
      street: '2100 La Crosse Street',
      city: 'La Crosse',
      state: 'WI',
      zip: '54601',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Myrick Park:</strong><br />2100 La Crosse Street<br />La Crosse, WI 54601</span>',
      full: '2100 La Crosse Street, La Crosse, WI, 54601',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_16.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_16.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

    var address_17 = {
      street: '1128 La Crosse, Street',
      city: 'La Crosse',
      state: 'WI',
      zip: '54601',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Howie\'s Banquet Hall</strong><br />1128 La Crosse, Street<br />La Crosse, WI 54601</span>',
      full: '1128 La Crosse, Street, La Crosse, WI, 54601',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_17.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_17.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

    var address_18 = {
      street: 'N7087 Moonlite Ave.',
      city: 'Holmen',
      state: 'WI',
      zip: '54636',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Luann S. Dibb Photo</strong><br />N7087 Moonlite Ave.<br />Holmen, WI 54636</span>',
      full: 'N7087 Moonlite Ave., Holmen, WI, 54636',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_18.full,
      function(point) {
        if(point) {
          map.setCenter(point, 10);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_18.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_18.infowindowtext);
        }
        else {
          map.setCenter(new GLatLng(43.913872,-91.213417), 10);
        }
      }
    );

  }
}