
function wagmp_map_1() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagmp_map_1')) return false;
    var map = new GMap2(document.getElementById('wagmp_map_1'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GLargeMapControl());
    map.addControl(new GScaleControl());
    map.addControl(new GMapTypeControl());
    map.addControl(new GOverviewMapControl());
    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/house/pacifica.png';
    icon_0.shadow = 'http://google.webassist.com/google/markers/house/shadow.png';
    icon_0.iconSize = new GSize(25,14);
    icon_0.shadowSize = new GSize(25,14);
    icon_0.iconAnchor = new GPoint(9,13);
    icon_0.infoWindowAnchor = new GPoint(9,0);
    icon_0.printImage = 'http://google.webassist.com/google/markers/house/pacifica.gif';
    icon_0.mozPrintImage = 'http://google.webassist.com/google/markers/house/pacifica_mozprint.png';
    icon_0.printShadow = 'http://google.webassist.com/google/markers/house/shadow.gif';
    icon_0.transparent = 'http://google.webassist.com/google/markers/house/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;"><a href="../accommodation/aliwal_cottages.htm">Aliwal Cottages</a></span>',
      full: '-30.205619,30.799404',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '-30.205619',
      longitude: '30.799404',
      markerStyle: 'House',
      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_14') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var icon_1 = new GIcon();
    icon_1.image = 'http://google.webassist.com/google/markers/house/pacifica.png';
    icon_1.shadow = 'http://google.webassist.com/google/markers/house/shadow.png';
    icon_1.iconSize = new GSize(25,14);
    icon_1.shadowSize = new GSize(25,14);
    icon_1.iconAnchor = new GPoint(9,13);
    icon_1.infoWindowAnchor = new GPoint(9,0);
    icon_1.printImage = 'http://google.webassist.com/google/markers/house/pacifica.gif';
    icon_1.mozPrintImage = 'http://google.webassist.com/google/markers/house/pacifica_mozprint.png';
    icon_1.printShadow = 'http://google.webassist.com/google/markers/house/shadow.gif';
    icon_1.transparent = 'http://google.webassist.com/google/markers/house/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;"><a href="../accommodation/agulhas_house.htm">Agulhas House</a></span>',
      full: '-30.204274,30.798503',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '-30.204274',
      longitude: '30.798503',
      markerStyle: 'House',
      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_14') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var icon_2 = new GIcon();
    icon_2.image = 'http://google.webassist.com/google/markers/house/pacifica.png';
    icon_2.shadow = 'http://google.webassist.com/google/markers/house/shadow.png';
    icon_2.iconSize = new GSize(25,14);
    icon_2.shadowSize = new GSize(25,14);
    icon_2.iconAnchor = new GPoint(9,13);
    icon_2.infoWindowAnchor = new GPoint(9,0);
    icon_2.printImage = 'http://google.webassist.com/google/markers/house/pacifica.gif';
    icon_2.mozPrintImage = 'http://google.webassist.com/google/markers/house/pacifica_mozprint.png';
    icon_2.printShadow = 'http://google.webassist.com/google/markers/house/shadow.gif';
    icon_2.transparent = 'http://google.webassist.com/google/markers/house/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;"><a href="../accommodation/aliwal_inn.htm">Aliwal Inn</a></span>',
      full: '-30.204028,30.801238',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '-30.204028',
      longitude: '30.801238',
      markerStyle: 'House',
      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_14') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var icon_3 = new GIcon();
    icon_3.image = 'http://google.webassist.com/google/markers/house/pacifica.png';
    icon_3.shadow = 'http://google.webassist.com/google/markers/house/shadow.png';
    icon_3.iconSize = new GSize(25,14);
    icon_3.shadowSize = new GSize(25,14);
    icon_3.iconAnchor = new GPoint(9,13);
    icon_3.infoWindowAnchor = new GPoint(9,0);
    icon_3.printImage = 'http://google.webassist.com/google/markers/house/pacifica.gif';
    icon_3.mozPrintImage = 'http://google.webassist.com/google/markers/house/pacifica_mozprint.png';
    icon_3.printShadow = 'http://google.webassist.com/google/markers/house/shadow.gif';
    icon_3.transparent = 'http://google.webassist.com/google/markers/house/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;"><a href="../accommodation/lala_manzi.htm">Lala Manzi Hotel</a></span>',
      full: '-30.207227,30.798696',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '-30.207227',
      longitude: '30.798696',
      markerStyle: 'House',
      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_14') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var icon_4 = new GIcon();
    icon_4.image = 'http://google.webassist.com/google/markers/star/pacifica.png';
    icon_4.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon_4.iconSize = new GSize(29,39);
    icon_4.shadowSize = new GSize(29,39);
    icon_4.iconAnchor = new GPoint(15,15);
    icon_4.infoWindowAnchor = new GPoint(19,7);
    icon_4.printImage = 'http://google.webassist.com/google/markers/star/pacifica.gif';
    icon_4.mozPrintImage = 'http://google.webassist.com/google/markers/star/pacifica_mozprint.png';
    icon_4.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon_4.transparent = 'http://google.webassist.com/google/markers/star/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;">Aliwal Shoal Launch Site</span>',
      full: '-30.200097,30.802402',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '-30.200097',
      longitude: '30.802402',
      markerStyle: 'Star',
      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_14') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var icon_5 = new GIcon();
    icon_5.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon_5.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon_5.iconSize = new GSize(31,35);
    icon_5.shadowSize = new GSize(31,35);
    icon_5.iconAnchor = new GPoint(4,27);
    icon_5.infoWindowAnchor = new GPoint(8,3);
    icon_5.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon_5.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon_5.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_5.transparent = 'http://google.webassist.com/google/markers/flag/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;">Train Station</span>',
      full: '-30.203676,30.802097',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '-30.203676',
      longitude: '30.802097',
      markerStyle: 'Flag',
      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_14') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var icon_6 = new GIcon();
    icon_6.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon_6.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon_6.iconSize = new GSize(31,35);
    icon_6.shadowSize = new GSize(31,35);
    icon_6.iconAnchor = new GPoint(4,27);
    icon_6.infoWindowAnchor = new GPoint(8,3);
    icon_6.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon_6.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon_6.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_6.transparent = 'http://google.webassist.com/google/markers/flag/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;">Post Office</span>',
      full: '-30.205665,30.79788',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '-30.205665',
      longitude: '30.79788',
      markerStyle: 'Flag',
      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_14') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var icon_7 = new GIcon();
    icon_7.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon_7.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon_7.iconSize = new GSize(31,35);
    icon_7.shadowSize = new GSize(31,35);
    icon_7.iconAnchor = new GPoint(4,27);
    icon_7.infoWindowAnchor = new GPoint(8,3);
    icon_7.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon_7.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon_7.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_7.transparent = 'http://google.webassist.com/google/markers/flag/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;">Police Station</span>',
      full: '-30.207033,30.791116',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '-30.207033',
      longitude: '30.791116',
      markerStyle: 'Flag',
      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_14') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var icon_8 = new GIcon();
    icon_8.image = 'http://google.webassist.com/google/markers/star/pacifica.png';
    icon_8.shadow = 'http://google.webassist.com/google/markers/star/shadow.png';
    icon_8.iconSize = new GSize(29,39);
    icon_8.shadowSize = new GSize(29,39);
    icon_8.iconAnchor = new GPoint(15,15);
    icon_8.infoWindowAnchor = new GPoint(19,7);
    icon_8.printImage = 'http://google.webassist.com/google/markers/star/pacifica.gif';
    icon_8.mozPrintImage = 'http://google.webassist.com/google/markers/star/pacifica_mozprint.png';
    icon_8.printShadow = 'http://google.webassist.com/google/markers/star/shadow.gif';
    icon_8.transparent = 'http://google.webassist.com/google/markers/star/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;">Aliwal Shoal</span>',
      full: '-30.222882,30.83931',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '-30.222882',
      longitude: '30.83931',
      markerStyle: 'Star',
      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_14') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var icon_9 = new GIcon();
    icon_9.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon_9.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon_9.iconSize = new GSize(31,35);
    icon_9.shadowSize = new GSize(31,35);
    icon_9.iconAnchor = new GPoint(4,27);
    icon_9.infoWindowAnchor = new GPoint(8,3);
    icon_9.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon_9.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon_9.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_9.transparent = 'http://google.webassist.com/google/markers/flag/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;">Green Point Lighthouse</span>',
      full: '-30.244461,30.776181',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '-30.244461',
      longitude: '30.776181',
      markerStyle: 'Flag',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_9.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_9);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_9.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_9' != 'address_14') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var icon_10 = new GIcon();
    icon_10.image = 'http://google.webassist.com/google/markers/flag/pacifica.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/pacifica.gif';
    icon_10.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon_10.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_10.transparent = 'http://google.webassist.com/google/markers/flag/pacifica_transparent.png';
    
    var address_10 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Durban International Airport</span>',
      full: '-29.966907,30.945568',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '-29.966907',
      longitude: '30.945568',
      markerStyle: 'Flag',
      markerColor: 'Pacifica'      
    };
    
    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_14') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var icon_11 = new GIcon();
    icon_11.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon_11.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon_11.iconSize = new GSize(31,35);
    icon_11.shadowSize = new GSize(31,35);
    icon_11.iconAnchor = new GPoint(4,27);
    icon_11.infoWindowAnchor = new GPoint(8,3);
    icon_11.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon_11.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon_11.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_11.transparent = 'http://google.webassist.com/google/markers/flag/pacifica_transparent.png';
    
    var address_11 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Shelly Beach<br />Protea Banks Launch Site</span>',
      full: '-30.808758,30.412946',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '-30.808758',
      longitude: '30.412946',
      markerStyle: 'Flag',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_11.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_11);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_11.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_11' != 'address_14') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var icon_12 = new GIcon();
    icon_12.image = 'http://google.webassist.com/google/markers/flag/pacifica.png';
    icon_12.shadow = 'http://google.webassist.com/google/markers/flag/shadow.png';
    icon_12.iconSize = new GSize(31,35);
    icon_12.shadowSize = new GSize(31,35);
    icon_12.iconAnchor = new GPoint(4,27);
    icon_12.infoWindowAnchor = new GPoint(8,3);
    icon_12.printImage = 'http://google.webassist.com/google/markers/flag/pacifica.gif';
    icon_12.mozPrintImage = 'http://google.webassist.com/google/markers/flag/pacifica_mozprint.png';
    icon_12.printShadow = 'http://google.webassist.com/google/markers/flag/shadow.gif';
    icon_12.transparent = 'http://google.webassist.com/google/markers/flag/pacifica_transparent.png';
    
    var address_12 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Oribi Gorge</span>',
      full: '-30.669071,30.304751',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '-30.669071',
      longitude: '30.304751',
      markerStyle: 'Flag',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_12.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_12);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_12.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_12' != 'address_14') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var icon_13 = new GIcon();
    icon_13.image = 'http://google.webassist.com/google/markers/house/pacifica.png';
    icon_13.shadow = 'http://google.webassist.com/google/markers/house/shadow.png';
    icon_13.iconSize = new GSize(25,14);
    icon_13.shadowSize = new GSize(25,14);
    icon_13.iconAnchor = new GPoint(9,13);
    icon_13.infoWindowAnchor = new GPoint(9,0);
    icon_13.printImage = 'http://google.webassist.com/google/markers/house/pacifica.gif';
    icon_13.mozPrintImage = 'http://google.webassist.com/google/markers/house/pacifica_mozprint.png';
    icon_13.printShadow = 'http://google.webassist.com/google/markers/house/shadow.gif';
    icon_13.transparent = 'http://google.webassist.com/google/markers/house/pacifica_transparent.png';
    
    var address_13 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;">Ocean Park Guest House</span>',
      full: '-30.208122,30.795075',
      isdefault: false,
      addressType: 'coordinates',
      loop: '',
      latitude: '-30.208122',
      longitude: '30.795075',
      markerStyle: 'House',
      markerColor: 'Pacifica'      
    };
    
    geocoder.getLatLng (
      address_13.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_13);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_13.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_13' != 'address_14') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
          }
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );

    var icon_14 = new GIcon();
    icon_14.image = 'http://google.webassist.com/google/markers/house/tahitisea.png';
    icon_14.shadow = 'http://google.webassist.com/google/markers/house/shadow.png';
    icon_14.iconSize = new GSize(25,14);
    icon_14.shadowSize = new GSize(25,14);
    icon_14.iconAnchor = new GPoint(9,13);
    icon_14.infoWindowAnchor = new GPoint(9,0);
    icon_14.printImage = 'http://google.webassist.com/google/markers/house/tahitisea.gif';
    icon_14.mozPrintImage = 'http://google.webassist.com/google/markers/house/tahitisea_mozprint.png';
    icon_14.printShadow = 'http://google.webassist.com/google/markers/house/shadow.gif';
    icon_14.transparent = 'http://google.webassist.com/google/markers/house/tahitisea_transparent.png';
    
    var address_14 = {
      street: '',
      city: '',
      state: '',
      zip: '',
      country: '',
      infowindow: 'custom',
      infowindowtext: '<span style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><a href="../accommodation/raggies_rest.htm"><br />              Raggies Rest</a></span>',
      full: '-30.207473,30.793170',
      isdefault: true,
      addressType: 'coordinates',
      loop: '',
      latitude: '-30.207473',
      longitude: '30.793170',
      markerStyle: 'House',
      markerColor: 'Tahiti Sea'      
    };
    
    geocoder.getLatLng (
      address_14.full,
      function(point) {
        if(point) {
          var marker = new GMarker(point, icon_14);
          GEvent.addListener(marker, 'click', function() {
            marker.openInfoWindowHtml(address_14.infowindowtext);
          });
          if(!fromAddress.enabled || 'address_14' != 'address_14') {
            map.setCenter(point, 13);
            map.addOverlay(marker);
            marker.openInfoWindowHtml(address_14.infowindowtext);
          }
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        }
      }
    );


  }
}