
		function initialize(address) {
		  if (GBrowserIsCompatible()) {
			map = new GMap2(document.getElementById("mapa"));
			map.addControl(new GSmallMapControl());
			geocoder = new GClientGeocoder();
			address=document.getElementById("address").value;
			band=document.getElementById("band").value;
			
				if (geocoder) {
				geocoder.getLatLng(
				  address,
				  function(point) {
					if (!point) {
					  map.setCenter(new GLatLng(51.919438, 19.145136), 5);
					} else {
					  map.setCenter(point, 13);
					  var marker = new GMarker(point);
					  map.addOverlay(marker);
					  marker.openInfoWindowHtml("<span style=\"font-size: 11px; color #232323;\"><b>"+address+"</b><br />"+band+"</span>");
					}
				  }
				);
			  }
		  }
		}
