    
    function loadLocationMap() {
      if (GBrowserIsCompatible()) {
    
    	  // Display the map, with some controls and set the initial location 
    	  var map = new GMap2(document.getElementById("map"));
    	  map.addControl(new GLargeMapControl());
    	  map.addControl(new GMapTypeControl());
    	  map.setCenter(new GLatLng(-38.653544363626494, 143.50547790527344), 9);
    	
    	  // Set up markers with info windows 
    	
    	  var point = new GLatLng(-38.653544363626494, 143.50547790527344);
    	  var marker = createMarker(point,'<div style="width:240px; padding: 0; margin: 0 0 -0px 0;"><h4>Otway Fly</h4><p>360 Phillips Track Beech Forest, VIC 3250 <br>Phone(03) 5235 9200</p></div>')
    	  map.addOverlay(marker);
    
    	}
    }
    
    function createMarker(point,html) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
    }