//前へ（上）
function backBtn(){
	document.pageMove1.submit();
}
//次へ（上）
function nextBtn(){
	document.pageMove2.submit();
}
//前へ（下）
function backBtn(){
	document.upageMove1.submit();
}
//次へ（下）
function nextBtn(){
	document.upageMove2.submit();
}
//ページView（上）
function clickPageNo(pgc,lno){
	document.pageView.pageCount.value=pgc;
	document.pageView.LineNum.value=lno;
	document.pageView.submit();
}

//ページView（下）
function clickPageNo(pgc,lno){
	document.upageView.pageCount.value=pgc;
	document.upageView.LineNum.value=lno;
	document.upageView.submit();
}
function changePref(){
	selected_pref = document.searchForm.pref.selectedIndex;
	document.searchForm.s_pref.value = document.searchForm.pref.options[selected_pref].value;
	document.searchForm.s_city.value = "";
	document.searchForm.submit();
}
function changeCity(){
	selected_city = document.searchForm.city.selectedIndex;
	document.searchForm.s_city.value = document.searchForm.city.options[selected_city].value;
	document.searchForm.submit();
}

