function toggleMoveinOther(t) {
	if (t == 1) {
		document.getElementById('homes_movein_other').style.display = "";
		document.getElementById('homes_movein_other').focus();
	} else {
		document.getElementById('homes_movein_other').style.display = "none";
	}
}