//ページ移動
function move(spage) {
	thisform = document.f;
	thisform.elements["sp"].value = spage;
	thisform.action = SysPath + "/touris/list/cs" + prm1_cs + "/";
	thisform.submit();
}

//検索ページへ移動
function index() {
	thisform = document.f;
	thisform.action = SysPath + "/touris/index/";
	thisform.submit();
}

//カテゴリ(小)選択時
function selCategoryS(categorycd) {
	thisform = document.f;
	thisform.action = SysPath + "/touris/list/cs" + categorycd + "/";
	thisform.submit();
}

//カテゴリ(中)選択時
function selCategoryM(categorycd) {
	thisform = document.f;
	thisform.action = SysPath + "/touris/list/cm" + categorycd + "/";
	thisform.submit();
}

//カテゴリ(大)選択時
function selCategoryL(categorycd) {
	thisform = document.f;
	thisform.action = SysPath + "/touris/list/cl" + categorycd + "/";
	thisform.submit();
}

//詳細ページへ移動
function next(id) {
	thisform = document.f;
	thisform.action = SysPath + "/touris/shosai/" + id + "/";
	thisform.submit();
}