 google.load('search', '1');
    google.load('maps', '2');

    // Our global state
    var gMap;
    function OnLoad() {

      // Create a map
      gMap = new google.maps.Map2(document.getElementById("mapDiv"));
      gMap.addControl(new google.maps.SmallMapControl());
      gMap.setCenter(new google.maps.LatLng(51.52979199214484, 0.03499746322631836), 13);

      // Add point location
      var marker = new google.maps.Marker(new google.maps.LatLng(51.52979199214484, 0.03499746322631836), G_DEFAULT_ICON);
      GEvent.bind(marker, "click", this, function() { // If this marker is clicked
        marker.openInfoWindow("<b>Cigma Medical Centre</b><br/>717-719 Barking Road<br/>London E13 9EU");
      });
      gMap.addOverlay(marker);


      // Hide the map
      //element = document.getElementById("mapHolder");
      //element.className='hide';

      //element = document.getElementById("mapDiv");
      //element.className='hide';
    }