// JavaScript Document
    function load() 
	{
      if (GBrowserIsCompatible()) 
	  {
        var map = new GMap2(document.getElementById("map"));
		map.addControl(new GLargeMapControl());
		map.addControl(new GOverviewMapControl());
		map.addControl(new GMapTypeControl());
		var exhibition_equipment_location = new GLatLng(52.225210,-1.87310);
		map.setCenter(exhibition_equipment_location, 13);

		// Create a base icon for all of our markers that specifies the shadow, icon dimensions, etc.
		var baseIcon = new GIcon();
		baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
		baseIcon.iconSize = new GSize(20, 34);
		baseIcon.shadowSize = new GSize(37, 34);
		baseIcon.iconAnchor = new GPoint(9, 34);
		baseIcon.infoWindowAnchor = new GPoint(9, 2);
		baseIcon.infoShadowAnchor = new GPoint(18, 25);
		
	    function createMarker(point) 
		{
			var icon = new GIcon(baseIcon);
			icon.image = "http://www.google.com/mapfiles/marker.png";
			var marker = new GMarker(point, icon);
			GEvent.addListener ( marker, "click", 
				function() 
				{ 
					marker.openInfoWindowHtml("<strong>Exhibition Equipment</strong><br>Arden Road<br>Arden Forest Industrial Estate<br>Alcester<br>Warwickshire<br>B49 6HN<br>Tel: 01789 766733<br>Fax: 01789 766730"); 
				} 
			);
		  	return marker;
		}
		map.addOverlay(createMarker(exhibition_equipment_location));
		
	  }
    }
