
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: '26 Leafield Close',
      city: 'Woking',
      state: 'Surrey',
      zip: 'GU21 3HW',
      country: 'UK',
      full: '26 Leafield Close, Woking, Surrey, GU21 3HW, UK'
    };

    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';
    
/*
Exxell Ltd.
Centre Point
101-103 New Oxford Street
London, WC1A 1DU 
*/




    var address_0 = {
      street: '101-103 New Oxford Street',
      city: 'London',
      state: '',
      zip: 'WC1A 1DU',
      country: 'UK',
      infowindow: 'custom',
      infowindowtext: '<div style="font: 12px Verdana, Arial, Helvetica, sans-serif; color: black;"><img src="http://www.oracleglobal.com/images/exxell_logo_150.jpg" width="150" height="45" /><br /><strong>Address:</strong><br />Centre Point,<br /> 101-103 New Oxford Street,<br /> London, WC1A 1DU, UK<br /></div>',
      full: 'Centre Point, 101-103 New Oxford Street, London, WC1A 1DU, UK',
      isdefault: true,
      addressType: 'address',
      loop: '',
      latitude: '',
      longitude: '',
      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_0') {
            map.setCenter(point, 16);
            map.addOverlay(marker);
            marker.openInfoWindowHtml(address_0.infowindowtext);
          }
        }
        else {
          map.setCenter(new GLatLng(37.4419, -122.1419), 16);
        }
      }
    );


  }
}