// chusya.js

function top() {
	document.chusyaForm.actionType.value="INITIAL";
	document.chusyaForm.submit();
}

function member() {
	document.chusyaForm.member.value=true;
	document.chusyaForm.actionType.value="SEARCHSELECT";
	document.chusyaForm.submit();
}

function nomember() {
	document.chusyaForm.member.value=false;
	document.chusyaForm.actionType.value="SEARCHSELECT";
	document.chusyaForm.submit();
}

function searchSelect() {
	document.chusyaForm.actionType.value="SEARCHSELECT";
	document.chusyaForm.submit();
}

function apnoSearch() {
	document.chusyaForm.actionType.value="APNOSEARCH";
	document.chusyaForm.submit();
}

function condition() {
	document.chusyaForm.actionType.value="CONDITION";
	document.chusyaForm.submit();
}

function selectTaibetsu() {
	document.chusyaForm.actionType.value="TAIBETSUSELECT";
	document.chusyaForm.submit();
}

function selectTodofuken() {
	document.chusyaForm.actionType.value = "TODOFUKENSELECT";
	document.chusyaForm.submit();
}

function searchList() {
	document.chusyaForm.actionType.value = "SEARCH";
	document.chusyaForm.submit();
}

function next() {
	document.chusyaForm.actionType.value = "SEARCH";
	var no = eval(document.chusyaForm.pageNo.value);
	document.chusyaForm.pageNo.value = (no+1);
	document.chusyaForm.submit();
}

function prev() {
	document.chusyaForm.actionType.value = "SEARCH";
	no = eval(document.chusyaForm.pageNo.value);
	document.chusyaForm.pageNo.value = no-1;
	document.chusyaForm.submit();
}

function detail(apno) {
	document.chusyaForm.apno.value=apno;
	document.chusyaForm.actionType.value = "DETAIL";
	document.chusyaForm.submit();
}

