// Pagination taglib javascript
function paginationStart(form, index) {
	form.firstResult.value = index;
	form.submit();
}

function paginationMaxResults(form) {
	var index = document.getElementById(form.name+'MaxResults').selectedIndex;
	var value = document.getElementById(form.name+'MaxResults')[index].value;
	form.maxResults.value = value;
	form.submit();
}
