
    function initialize() {
		try{
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        //map.setCenter(new GLatLng(50.81960, 4.32206), 1);
		map.setCenter(new GLatLng(37.4419, -122.1419), 13);
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
		var bubble = document.createElement("p");
		bubble.setAttribute("align", "left");
		bubble.setAttribute("style", "font-family:arial");
		bubble.innerHTML = "<b>"+title+"</b><br />Get directions from:<br /><input type=\"text\" id=\"from_location\" /><input type=\"button\" value=\"Go\" onclick=\"window.open('http://maps.google.co.uk/maps?f=d&hl=en&saddr=' + document.getElementById('from_location').value + '&daddr="+escape(address)+"');\"/>";          		
		map.openInfoWindow(map.getCenter(), bubble);		
		}
	  }catch(err){
	  
	  }
    }



