    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(53.480800,-2.242050), 16);

	
	 function createMarker(point,html) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
      }
		
		// Set up markers with info window
    
      var point = new GLatLng(53.480800,-2.242050);
      var marker = createMarker(point,'<div style="width:240px; font-family:arial; font-size:11px;"><b>Room Manchester</b>,<br/> 81 King Street,<br/> Manchester,<br/> M2 4AH </div>')
      map.addOverlay(marker);
		
      }
    }

    //]]>