function wagt_map_5() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_5')) return false;
    var map = new GMap2(document.getElementById('wagt_map_5'));
    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 = 'Pacifica';
    icon.image = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.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/pacifica.gif';
    icon.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';

    var address_0 = {
      street: '651 E 1400 S',
      city: 'Orem',
      state: 'UT',
      zip: '84097',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Hillcrest Elem</strong><br />Awarded $1,499 for smartboards.</span>',
      full: '651 E 1400 S, Orem, UT, 84097, USA',
      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: '10189 N 4800 W',
      city: 'Highland',
      state: 'UT',
      zip: '84003',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Lone Peak HS</strong><br />Awarded $2,000 for a mobile computer lab.</span>',
      full: '10189 N 4800 W, Highland, UT, 84003, USA',
      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: '830 Law Dr',
      city: 'Brigham City',
      state: 'UT',
      zip: '84302',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Adele C. Young Intermediate</strong><br />Awarded $4,196 for boards and projectors.</span>',
      full: '830 Law Dr, Brigham City, UT, 84302, USA',
      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: '380 S 600 W',
      city: 'Brigham City',
      state: 'UT',
      zip: '84302',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Box Elder HS</strong><br />Awarded $1,620 for cameras.</span>',
      full: '380 S 600 W, Brigham City, UT, 84302, USA',
      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: '10 S 480 W',
      city: 'Hyrum',
      state: 'UT',
      zip: '84319',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>South Cache Center</strong><br />Awarded $2,000 for technology.</span>',
      full: '10 S 480 W, Hyrum, UT, 84319, USA',
      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: '590 W 500 S',
      city: 'Price',
      state: 'UT',
      zip: '84501',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Creekview Elem</strong><br />Awarded $2,800 for smartboards.</span>',
      full: '590 W 500 S, Price, UT, 84501, USA',
      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: '595 Edgehill',
      city: 'Sunnyside',
      state: 'UT',
      zip: '84539',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Petersen Elem</strong><br />Awarded $4,621 for literacy tubs.</span>',
      full: '595 Edgehill, Sunnyside, UT, 84539, USA',
      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: '250 W 200 N',
      city: 'Wellington',
      state: 'UT',
      zip: '84542-0407',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Wellington Elem</strong><br />Awarded $2,401 for microscopes.</span>',
      full: '250 W 200 N, Wellington, UT, 84542-0407, USA',
      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: '2525 N 160 W',
      city: 'Sunset',
      state: 'UT',
      zip: '84015',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Fremont Elem</strong><br />Awarded $1,840 for math manipulatives.</span>',
      full: '2525 N 160 W, Sunset, UT, 84015, USA',
      isdefault: false
    };
    
    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);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_9 = {
      street: '50 N 100 E',
      city: 'Kaysville',
      state: 'UT',
      zip: '84037',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Kaysville Elem</strong><br />Awarded $2,400 for technology.</span>',
      full: '50 N 100 E, Kaysville, UT, 84037, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_9.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_9.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_10 = {
      street: '90 E 100 N',
      city: 'Huntington',
      state: 'UT',
      zip: '84528',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Huntington Elem</strong><br />Awarded $4,200 for smart boards.</span>',
      full: '90 E 100 N, Huntington, UT, 84528, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_10.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_10.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_11 = {
      street: '4040 W 5305 S',
      city: 'Kearns',
      state: 'UT',
      zip: '84118-4326',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Kearns Jr High</strong><br />Awarded $800 GPS and cameras.</span>',
      full: '4040 W 5305 S, Kearns, UT, 84118-4326, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_11.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_11.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_12 = {
      street: '8201 W 2700 S',
      city: 'Magna',
      state: 'UT',
      zip: '84044-1323',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Pleasant Green Elem</strong><br />Awarded $2,400 microscopes.</span>',
      full: '8201 W 2700 S, Magna, UT, 84044-1323, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_12.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_12.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_13 = {
      street: '3505 W 7800 S',
      city: 'West Jordan',
      state: 'UT',
      zip: '84088',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Columbia Elem</strong><br />Awarded $2,477 for smartboards.</span>',
      full: '3505 W 7800 S, West Jordan, UT, 84088, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_13.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_13.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_14 = {
      street: '11150 S 300 E',
      city: 'Sandy',
      state: 'UT',
      zip: '84070',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Crescent View Middle School</strong><br />Awarded $2,198 for smartboards.</span>',
      full: '11150 S 300 E, Sandy, UT, 84070, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_14.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_14.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_15 = {
      street: '50 N 100 E',
      city: 'Delta',
      state: 'UT',
      zip: '84624',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Delta North Elem</strong><br />Awarded $840 for reading program.</span>',
      full: '50 N 100 E, Delta, UT, 84624, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_15.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_15.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_16 = {
      street: '430 S 500 W',
      city: 'Fillmore',
      state: 'UT',
      zip: '84631',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Fillmore Elem</strong><br />Awarded $1,500 for read along project.</span>',
      full: '430 S 500 W, Fillmore, UT, 84631, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_16.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_16.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_17 = {
      street: '745 W 5720 S',
      city: 'Murray',
      state: 'UT',
      zip: '84123',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Viewmont Elem</strong><br />Awarded $5,000 for a piano.</span>',
      full: '745 W 5720 S, Murray, UT, 84123, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_17.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_17.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_18 = {
      street: '121 N 900 E',
      city: 'Springville',
      state: 'UT',
      zip: '84663',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Art City Elem</strong><br />Awarded $1,681.25 for calculators.</span>',
      full: '121 N 900 E, Springville, UT, 84663, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_18.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_18.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_19 = {
      street: '2496 St Mary\'s Dr',
      city: 'Salt Lake City',
      state: 'UT',
      zip: '84106',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Indian Hills Elem</strong><br />Awarded $4,958 for science equipment.</span>',
      full: '2496 St Mary\'s Dr, Salt Lake City, UT, 84106, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_19.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_19.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_20 = {
      street: '271 East 600 South',
      city: 'Gunnison',
      state: 'UT',
      zip: '84634',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Gunnison Valley Middle School</strong><br />Awarded $3,400 for smartboards.</span>',
      full: '271 East 600 South, Gunnison, UT, 84634, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_20.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_20.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_21 = {
      street: '150 W 100 S',
      city: 'Manti',
      state: 'UT',
      zip: '84642',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Manti Elem</strong><br />Awarded $500 for a take home library.</span>',
      full: '150 W 100 S, Manti, UT, 84642, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_21.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_21.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_22 = {
      street: '100 W 500 N',
      city: 'Manti',
      state: 'UT',
      zip: '84642',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Manti HS</strong><br />Awarded $2,400 for smartboards.</span>',
      full: '100 W 500 N, Manti, UT, 84642, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_22.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_22.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_23 = {
      street: '1411 Diamond Valley Dr',
      city: 'St George',
      state: 'UT',
      zip: '84770',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Diamond Valley HS</strong><br />Awarded $4,100 for smartboards.</span>',
      full: '1411 Diamond Valley Dr, St George, UT, 84770, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_23.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_23.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_24 = {
      street: '1100 Orchard Ave',
      city: 'Ogden',
      state: 'UT',
      zip: '84404',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Canyon View School</strong><br />Awarded $3,939 for smartboards.</span>',
      full: '1100 Orchard Ave, Ogden, UT, 84404, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_24.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_24.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_25 = {
      street: '165 W 5100 S',
      city: 'Ogden',
      state: 'UT',
      zip: '84405',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>TH Bell JR High</strong><br />Awarded $3,600 for smartboards.</span>',
      full: '165 W 5100 S, Ogden, UT, 84405, USA',
      isdefault: false
    };
    
    geocoder.getLatLng (
      address_25.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_25.infowindowtext);
          });
          map.addOverlay(marker);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var address_26 = {
      street: '821 E 900 N',
      city: 'American Fork',
      state: 'UT',
      zip: '84003',
      country: 'USA',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: #000;"><strong>Alpine Summit HS</strong><br />Awarded $1,440 for infant simulators.</span>',
      full: '821 E 900 N, American Fork, UT, 84003, USA',
      isdefault: true
    };
    
    geocoder.getLatLng (
      address_26.full,
      function(point) {
        if(point) {
          map.setCenter(point, 13);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_26.infowindowtext);
          });
          map.addOverlay(marker);
          marker.openInfoWindowHtml(address_26.infowindowtext);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

  }
}