 //<![CDATA[


    if (GBrowserIsCompatible()) { 

  
      function createMarker(point,html) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
      }

      var map = new GMap2(document.getElementById("map"));
	map.addControl(new GSmallMapControl());
	map.addControl(new GMapTypeControl());
      map.setCenter(new GLatLng(54.04580, -2.796450), 17);
    sat = map.getMapTypes()[1];
	map.setMapType(sat); 
    
      // Set up three markers with info windows 
    
      var point = new GLatLng(54.04565, -2.796370);
      var marker = createMarker(point,"<div class='maptext'>We are Located just off the A6, within <br/>the White Cross Office development, <br/>only a few minutes from Lancaster <br/>City Centre.</div>")
      map.addOverlay(marker);
    }
    
    else {
      alert("Sorry, the Google Maps API is not compatible with this browser");
    }

    //]]>