
//<![CDATA[
function Gmap_load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
	map.addControl(new GSmallMapControl());
        map.setCenter(new GLatLng(52.2572, 0.0206), 15);

        var point = new GLatLng(52.2572, 0.0206);
        var marker = new GMarker(point);
		var infoTabs = [
		new GInfoWindowTab("Address", "<div style='width: 300px; height: 80px; display: block; line-height: 20px;'><b>Lumie</b><br>3 The Links, Trafalgar Way, Cambridge, CB23 8UD<br /> T: +44 (0)1954 780 500 F: +44 (0)1954 780 510<br />E: <a href='mailto:info@lumie.com'>info@lumie.com</a></div><br clear='all' />"),
		new GInfoWindowTab("Directions", "Enter your postcode to get directions<br><form name=\"directions\" target=\"_blank\" method=\"GET\" action=\"http://maps.google.co.uk/maps\" onsubmit=\"document.getElementById('q').value=document.getElementById('q').value+' to CB23 8UD'\"><input type=\"text\" name=\"q\" id=\"q\"><input type=\"hidden\" name=\"f\" value=\"q\"><input type=\"hidden\" name=\"hl\" value=\"en\"><input type=\"hidden\" name=\"om\" value=\"1\"><br><input type=\"submit\" value=\"get directions\"></form>")
		];


	GEvent.addListener(marker, "click", 
		function() {
			marker.openInfoWindowTabsHtml(infoTabs);
			map.setCenter(point, 15);
  		});
	map.addOverlay(marker); 

	  }

    }
        //]]>
