function ChangeProdListParameters(pagesize,offset,sort)
{
	var thisForm = document.form1

	thisForm.pagesize.value = pagesize
	thisForm.off.value = offset
	thisForm.sort.value = sort
	thisForm.submit()
}
function ChangeProdListParameters2(pagesize,offset,sort)
{
	var thisForm = document.form1

	thisForm.pagesize.value = pagesize
	thisForm.off.value = offset
	thisForm.submit()
}
