function showDetailInfo(code) {
  document.frmShochuList.action = code;
  document.frmShochuList.submit();
}

function setColorMouseOver(id) {
  document.all[id].style.background = "#FFFFCC";
}

function setColorMouseOut(id) {
  document.all[id].style.background = "#FFFFFF";
}

/*
 * 改ページ処理
 * 現在の検索条件を引き継ぎ自画面遷移する。
 */
function changePage(val) {
  param = "";
  param += "todoufukenCode=" + document.frmShochuList.todoufukenCode.value;
  param += "&genryoCode=" + document.frmShochuList.genryoCode.value;
  param += "&attentionFlg=" + document.frmShochuList.attentionFlg.value;
  param += "&phantomFlg=" + document.frmShochuList.phantomFlg.value;
  param += "&recommendationFlg=" + document.frmShochuList.recommendationFlg.value;
  param += "&refreshFlg=" + document.frmShochuList.refreshFlg.value;
  param += "&dryFlg=" + document.frmShochuList.dryFlg.value;
  param += "&smellFlg=" + document.frmShochuList.smellFlg.value;
  param += "&presentFlg=" + document.frmShochuList.presentFlg.value;
  param += "&yyyymmdd=" + document.frmShochuList.yyyymmdd.value;
  param += "&limitCount=" + document.frmShochuList.selectLimitCnt[document.frmShochuList.selectLimitCnt.selectedIndex].value;
  param += "&pageNo=" + (eval(document.frmShochuList.pageNo.value) + val);

  document.frmShochuList.action = "List.php?" + param;
//  alert(param);//return;
//  document.frmShochuList.submit();
  location.href = "List.php?" + param;
}

//pageNoの値をセット
function setPageNo(val) {
  document.frmShochuList.pageNo.value = val;
}

