function getLatLng(div) {
	$(div+" .geocodeButton").click(function() {
		var address = lightboxform1.orgaddress1.value + ', ' + lightboxform1.orgcity1.value + ', ' + lightboxform1.orgstate1.value + ' ' + lightboxform1.orgzip1.value;
		//alert(address);
		geocoder.geocode( { 'address': address}, function(results, status) {
		  if (status == google.maps.GeocoderStatus.OK) {
			var addressLat = results[0].geometry.location.lat().toFixed(5);
			var addressLng = results[0].geometry.location.lng().toFixed(5);
			//alert(addressLat);
			//alert(addressLng);
			lightboxform1.orglatTEMP.value = addressLat;
			lightboxform1.orglongTEMP.value = addressLng;
			lightboxform1.orglat.value = addressLat;
			lightboxform1.orglong.value = addressLng;
		  } else {
			alert("Geocoding was not successful for the following reason: " + status);
		  }
		});
	});
};
