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

        var point = new GLatLng(52.25617,0.019099);
        var marker = new GMarker(point);
	var infoTabs = [
  	new GInfoWindowTab("Address", "Victoire Press Ltd<br />1 Trafalgar Way<br />Bar Hill<br />Cambridge CB23 8SQ<br />&nbsp;"),
  	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 8SQ'\"><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, 13);
  		});
	map.addOverlay(marker); 
	
	
	
    }
}
        //]]>