<!--
function view_change_submit(URL) {
	location.href = URL;
}

function result_submit(URL, NUM) {
	CHK = false;
	if (NUM == 0) {
		document.result.action = URL;
		document.result.submit();
	} else {
		for (i = 1; i <= NUM; i++) {
			if (document.result.elements["choice" + i].checked == true) {
				CHK = true;
				break;
			}
		}
		if (CHK != true) {
			alert ('物件を選択してください');
			return true;
		} else {
			document.result.action = URL;
			document.result.submit();
		}
	}
}
//-->
