// JavaScript Document
function form_move() {
	var radio = document.getElementById('other');
	var label = document.getElementById('other_label');
	var input = document.getElementById('found_us_other');
	function clicked(a) {
		a.onfocus = function() {
			input.focus();
		}
	}
	clicked(radio);
	clicked(label);
	input.onfocus = function() {
		radio.checked = 'checked';
	}
}
window.onload = form_move;