/**
 * inserts the google map locating the UK office;
 */
					
function load() 
{
  if (GBrowserIsCompatible()) 
  {
	var map = new GMap2(document.getElementById("map"));
	map.addControl(new GSmallMapControl());
	//map.addControl(new GMapTypeControl());
	map.setCenter(new GLatLng(51.7500, -1), 12);
	var text = "<strong>Imago Publishing Limited</strong><br />Albury Court,<br />Albury";
	var point = new GLatLng(51.7425, -1.045);
	// Creates a marker at the given point with the given number label
	
	  var marker = new GMarker(point);
	  GEvent.addListener(marker, "click", function() {
		marker.openInfoWindowHtml( text );
	  });
	
	
	
	map.addOverlay(marker);
	marker.openInfoWindowHtml( text );

  }
}

						

