var map = null;
	    var geocoder = null;	    
	    function initialize(address,txt) {
	    	if (GBrowserIsCompatible()) {
	        map = new GMap2(document.getElementById("map_canvas"));
	        map.setCenter(new GLatLng(41.616854,0.620899), 13);
	        geocoder = new GClientGeocoder();
	        map.addControl(new GSmallMapControl());
	       	map.addControl(new GMapTypeControl());
	        showAddress(address,txt);
	      }
	    }
	    function showAddress(address,txt) {
	      if (geocoder) {
	        geocoder.getLatLng(
	          address,
	          function(point) {
	            if (!point) {
	              
	            } else {
	              map.setCenter(point, 16);
	              var marker = new GMarker(point);
	              map.addOverlay(marker);
	              marker.openInfoWindowHtml(txt);
	              
	              GEvent.addListener(marker, "click", function() {
	              	marker.openInfoWindowHtml(adre);
	              });
	            }
	          }
	        );
	      }
	    }
	    