
<!--

	function setForm(thisForm,thisPage,thisTransaction) {
		thisForm.PageID.value = thisPage.toString();
		thisForm.TransactionID.value = thisTransaction.toString();
		thisForm.submit();
	}
	
	function setNext(thisForm,thisMax,thisTransaction) {
		thisForm.MaxID.value = thisMax.toString();
		thisForm.TransactionID.value = thisTransaction.toString();
		thisForm.submit();
	}

	function setAction(thisForm) {
		thisForm.ListID.value = eval(thisForm.ListID.value + '+ 1');
		thisForm.PageID.value = 1;
		thisForm.MaxID.value = 1;
		thisForm.TransactionID.value = 1;
		thisForm.submit();
	}

	function SetField(thisItem) {
		if(thisItem.checked) {
			eval('document.MoveForm.HDN_' + thisItem.value + '.value = 1');
		}
		else {
			eval('document.MoveForm.HDN_' + thisItem.value + '.value = 0');
		}
	}

//-->


