//<![CDATA[
    function gmapLoad() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
	map.addControl(new GSmallMapControl());

        var point = new GLatLng(53.4310,-2.5312);
        map.setCenter(point, 13);
        var marker = new GMarker(point);
	var infoTabs = [
  	new GInfoWindowTab("Address", "<b>The Breeze</b><br />Kelvin Close<br />Birchwood<br />Warrington<br />WA3 7PB<br /> "),
  	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 WA3 7PB'\"><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.addOverlay(marker); 

	}
    }
    //]]>