function WAMapRef(mapObj)  {
  this.obj = mapObj;
  this.directions = false;
  this.icons = [];
  this.markers = [];
  this.addresses = [];
  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_14() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagmp_map_14')) return false;
    var map = new GMap2(document.getElementById('wagmp_map_14'));
    wagmp_map_14_obj = new WAMapRef(map);
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallMapControl());
    map.addControl(new GMapTypeControl());
    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/traditionalflat/pacifica.png';
    icon_0.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_0.iconSize = new GSize(34,35);
    icon_0.shadowSize = new GSize(34,35);
    icon_0.iconAnchor = new GPoint(9,23);
    icon_0.infoWindowAnchor = new GPoint(19,0);
    icon_0.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_0.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_0.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_0.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_0 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Chickasha:</strong><br />Hwy 62 .2m west of Hwy 81<br />12x25 East Face<br /><a href="pdfs/chixhwy62eof29th.jpg" target=_blank>Photos and Pricing</a></span>',
      full: '35.061126,-97.967663',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '35.061126',
      longitude: '-97.967663',
      markerStyle: 'Google Traditional (flat)',
      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_10') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_14_obj.markers.push(marker);
          wagmp_map_14_obj.addresses.push(address_0);
          wagmp_map_14_obj.icons.push(icon_0);
        }
        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/traditionalflat/pacifica.png';
    icon_1.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_1.iconSize = new GSize(34,35);
    icon_1.shadowSize = new GSize(34,35);
    icon_1.iconAnchor = new GPoint(9,23);
    icon_1.infoWindowAnchor = new GPoint(19,0);
    icon_1.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_1.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_1.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_1.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_1 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Chickasha:</strong><br />Hwy 81 .4m north of Hwy 62<br />12x25 North/South Face<br /><a href="pdfs/chixhwy81nofhwy62.jpg" target=_blank>Photos and Pricing</a></span>',
      full: '35.062741,-97.962899',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '35.062741',
      longitude: '-97.962899',
      markerStyle: 'Google Traditional (flat)',
      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_10') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_14_obj.markers.push(marker);
          wagmp_map_14_obj.addresses.push(address_1);
          wagmp_map_14_obj.icons.push(icon_1);
        }
        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/traditionalflat/pacifica.png';
    icon_2.shadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.png';
    icon_2.iconSize = new GSize(34,35);
    icon_2.shadowSize = new GSize(34,35);
    icon_2.iconAnchor = new GPoint(9,23);
    icon_2.infoWindowAnchor = new GPoint(19,0);
    icon_2.printImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica.gif';
    icon_2.mozPrintImage = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_mozprint.png';
    icon_2.printShadow = 'http://google.webassist.com/google/markers/traditionalflat/shadow.gif';
    icon_2.transparent = 'http://google.webassist.com/google/markers/traditionalflat/pacifica_transparent.png';
    
    var address_2 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Chickasha:</strong><br />Hwy 62 & 16th Street<br />12x25 East/West Face<br /><a href="pdfs/chixhwy62&16.jpg" target=_blank>Photos and Pricing</a></span>',
      full: '35.054451,-97.951913',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '35.054451',
      longitude: '-97.951913',
      markerStyle: 'Google Traditional (flat)',
      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_10') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_14_obj.markers.push(marker);
          wagmp_map_14_obj.addresses.push(address_2);
          wagmp_map_14_obj.icons.push(icon_2);
        }
        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,23);
    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: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Chickasha:</strong><br />29th Street and Hwy 62<br />12x25 East/West Face<br /><a href="pdfs/chixhwy62&29th.jpg" target=_blank>Photos and Pricing</a></span>',
      full: '35.062882,-97.970967',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '35.062882',
      longitude: '-97.970967',
      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_10') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_14_obj.markers.push(marker);
          wagmp_map_14_obj.addresses.push(address_3);
          wagmp_map_14_obj.icons.push(icon_3);
        }
        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,23);
    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: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Chickasha:</strong><br />Hwy 81 1.2m south of I-44<br />10x30 2 North/South Faces<br /><a href="pdfs/chixhwy816msoi44.jpg" target=_blank>Photos and Pricing</a></span>',
      full: '35.009717,-97.935691',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '35.009717',
      longitude: '-97.935691',
      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_10') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_14_obj.markers.push(marker);
          wagmp_map_14_obj.addresses.push(address_4);
          wagmp_map_14_obj.icons.push(icon_4);
        }
        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,23);
    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: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Chickasha:</strong><br />Hwy 81 1.5m south of I-44<br />12x25 2 North/South Faces<br /><a href="pdfs/chixgeneralleedescript.jpg" target=_blank>Photos and Pricing</a></span>',
      full: '35.005323,-97.935777',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '35.005323',
      longitude: '-97.935777',
      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_10') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_14_obj.markers.push(marker);
          wagmp_map_14_obj.addresses.push(address_5);
          wagmp_map_14_obj.icons.push(icon_5);
        }
        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,23);
    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: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Chickasha:</strong><br />Hwy 81 and Hwy 19<br />12x25 2 North/South Faces<br /><a href="pdfs/chixdriveindescript.jpg" target=_blank>Photos and Pricing</a></span>',
      full: '34.994707,-97.936378',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '34.994707',
      longitude: '-97.936378',
      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_10') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_14_obj.markers.push(marker);
          wagmp_map_14_obj.addresses.push(address_6);
          wagmp_map_14_obj.icons.push(icon_6);
        }
        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,23);
    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: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Chickasha:</strong><br />16th Street and I-44<br />10x14 South Face<br /><a href="pdfs/chix16th&i44descrip.jpg" target=_blank>Photos and Pricing</a></span>',
      full: '35.007784,-97.953029',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '35.007784',
      longitude: '-97.953029',
      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_10') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_14_obj.markers.push(marker);
          wagmp_map_14_obj.addresses.push(address_7);
          wagmp_map_14_obj.icons.push(icon_7);
        }
        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,23);
    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: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Chickasha:</strong><br />Hwy 62 .5m east of Hwy 81<br />Across from Grady County Fairground<br /><a href="pdfs/chixhwy62atfaregrnds.jpg" target=_blank>Photos and Pricing</a></span>',
      full: '35.053046,-97.929039',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '35.053046',
      longitude: '-97.929039',
      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_10') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_14_obj.markers.push(marker);
          wagmp_map_14_obj.addresses.push(address_8);
          wagmp_map_14_obj.icons.push(icon_8);
        }
        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,23);
    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: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Chickasha:</strong><br />Hwy I-44, 1m south of Hwy 62, 1m North of Hwy 81<br /><a href="pdfs/chixsprtscomplex.jpg" target=_blank>Photos and Pricing</a></span>',
      full: '35.031683,-97.923031',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '35.031683',
      longitude: '-97.923031',
      markerStyle: 'Google Traditional (flat)',
      markerColor: 'Pacifica'      
    };
    
    /*geocoder.getLatLng (
      address_9.full,
      function(point) {
        if(point) {*/
		  var point = new GLatLng(address_9.latitude, address_9.longitude);
          var marker = new GMarker(point, icon_9);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_9.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_9' != 'address_10') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
          wagmp_map_14_obj.markers.push(marker);
          wagmp_map_14_obj.addresses.push(address_9);
          wagmp_map_14_obj.icons.push(icon_9);
        /*}
        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/flag/poppy.png';
    icon_10.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon_10.iconSize = new GSize(31,35);
    icon_10.shadowSize = new GSize(31,35);
    icon_10.iconAnchor = new GPoint(4,27);
    icon_10.infoWindowAnchor = new GPoint(8,3);
    icon_10.printImage = 'http://google.webassist.com/google/markers/flag/poppy.gif';
    icon_10.mozPrintImage = 'http://google.webassist.com/google/markers/flag/poppy_mozprint.png';
    icon_10.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_10.transparent = 'http://google.webassist.com/google/markers/flag/poppy_transparent.png';
    
    var address_10 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><strong>Chickasha</strong><br />25x12 Billboards</span>',
      full: '35.041803,-97.948608',
      isdefault: true,
      addressType: 'coordinates',
      loop: '',
      latitude: '35.041803',
      longitude: '-97.948608',
      markerStyle: 'Flag',
      markerColor: 'Poppy'      
    };
    
    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_10') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
            marker.openInfoWindowHtml(address_10.infowindowtext);
          }
          wagmp_map_14_obj.markers.push(marker);
          wagmp_map_14_obj.addresses.push(address_10);
          wagmp_map_14_obj.icons.push(icon_10);
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );
     waitForGeo();


  }
}