 google.load("maps", "2",{"other_params":"sensor=true"});

  function initialize() {   
 var map = new google.maps.Map2(document.getElementById("map"));
 map.setCenter(new google.maps.LatLng(51.225418, -0.209298), 8);  

 // Arrows and "+" and "-" buttons in the upper left
 map.addControl(new GSmallMapControl());
 
// Set location marker
var location1 = new GMarker(new GLatLng(51.225418, -0.209298));
GEvent.addListener(location1, "click", function() {location1.openInfoWindowHtml('Moes Moulds<br />Old Brewery Yard<br />56A Priory Road<br />Reigate<br />Surrey<br />RH2 8JB')});
map.addOverlay(location1);

			}  google.setOnLoadCallback(initialize);