function ChangeSearchParameters(pagesize,offset,sort)
{
	var thisForm = document.form1

	thisForm.pagesize.value = pagesize
	thisForm.off.value = offset
	thisForm.sort.value = sort
	thisForm.submit()
}

function ChangeSearchSortParameter()
{
	var thisForm = document.form1

	thisForm.sort.value = thisForm.sorted.value
	thisForm.off.value = "0"
	thisForm.submit()
}
