function xmlListGoto(form, n) {
	document.forms[form].xmlActionAsked.value = "goto";
	document.forms[form].xmlActionParam.value = n;
	document.forms[form].submit();
}
function xmlListFirst(form) {
	document.forms[form].xmlActionAsked.value = "first";
	//document.forms[form].submit();
}
function xmlListNPrev(form) {
	document.forms[form].xmlActionAsked.value = "nprev";
	//document.forms[form].submit();
}

function xmlListPrev(form, bSubmit) {
	document.forms[form].xmlActionAsked.value = "prev";
	if (bSubmit == undefined) bSubmit = false;
	if (!bSubmit) document.forms[form].submit();
}

function xmlListNext(form, bSubmit) {						// bSubmit par défaut = false
	document.forms[form].xmlActionAsked.value = "next";
	if (bSubmit == undefined) bSubmit = false;
	if (bSubmit) document.forms[form].submit();
}

function xmlListNNext(form) {
	document.forms[form].xmlActionAsked.value = "nnext";
	//document.forms[form].submit();
}
function xmlListLast(form) {
	document.forms[form].xmlActionAsked.value = "last";
	//document.forms[form].submit();
}
function xmlListChangePageSize(form) {
	document.forms[form].submit();
}

function xmlListSetPageSize(form, size) {
  document.forms[form].xmlListPageSize.value = size;
  document.forms[form].submit();
}
