<!--
function selectAll(checkname) {
	var Object=document.getElementsByName(checkname);
	for (iIndex=0;iIndex<Object.length;iIndex++) {
		Object[iIndex].checked=true;
	}
}

function uncheckAll(checkname) {
	var Object=document.getElementsByName(checkname);
	for (iIndex=0;iIndex<Object.length;iIndex++) {
		Object[iIndex].checked=false;
	}
}

function switchAll(checkname) {
	var Object=document.getElementsByName(checkname);
	for (iIndex=0;iIndex<Object.length;iIndex++) {
		Object[iIndex].checked=!Object[iIndex].checked;
	}
}

function gofirst() {
  document.fmList.pagenum.value = "1";
  document.fmList.submit();
  return false;
}
function golast() {
  document.fmList.pagenum.value = document.fmList.lastpage.value;
  document.fmList.submit();
  return false;
}
function gonext() {
  document.fmList.pagenum.value = document.fmList.nextpage.value;
  document.fmList.submit();
  return false;
}
function goprev() {
  document.fmList.pagenum.value = document.fmList.prevpage.value;
  document.fmList.submit();
  return false;
}
function gopage(pn) {
  document.fmList.pagenum.value = pn;
  document.fmList.submit();
  return false;
}
function gonextpageset(pn) {
  document.fmList.pagenum.value = document.fmList.nextpageset.value;
  document.fmList.submit();
  return false;
}
function goprevpageset(pn) {
  document.fmList.pagenum.value = document.fmList.prevpageset.value;
  document.fmList.submit();
  return false;
}
function switchpage(selObj) {
  document.fmList.pagenum.value = selObj.options[selObj.selectedIndex].value;
  document.fmList.submit();
  return false;
}
function jumppage() {
  var newPar=/^\d+$/
  if (!newPar.test(document.fmList.pages.value)) {
    document.fmList.pagenum.value = "1";
  } else {
    document.fmList.pagenum.value = document.fmList.pages.value;
  }
  document.fmList.submit();
  return false;
}
//-->