
// Wyszukiwarka pozycji
function codeAddress2()
{
	var address = document.getElementById("address1").value+', '+document.getElementById("address2").value;
	if(geocoder)
	{
		geocoder.geocode({'address': address}, function(results, status) {
			if(status == google.maps.GeocoderStatus.OK)
			{
				if(document.getElementById('mapaint') != undefined)
				{
					if(map_zoom<15) map_zoom = 15;
					mapa.setZoom(map_zoom);
				}
				mapa.setCenter(results[0].geometry.location);
				updateCenterPos();
				placeMarker(results[0].geometry.location);
			}
			else
			{
				alert("Brak wskazanej lokalizacji: " + status);
			}
		});
	}
}

