function moveAddress(address){
	if (geocoder) {
		geocoder.getLatLng(
        	address,
			function(point) {
            	if (!point) {
					alert(address + " not found");
				}
				else{
					map.setCenter(point, 14);
					var marker = new GMarker(point);
					map.addOverlay(marker);

			        document.getElementsByName("show_x")[0].value = point.lng();
			        document.getElementsByName("show_y")[0].value = point.lat();
				}
			}
		);
	}
}

function movelatlng(lng,lat) {
	map.panTo(new GLatLng(lat, lng));
}
