function jumpToPage(baseDir) {
	var urlParts = baseDir.split('?');
	var pagerId = document.getElementById('pageJump').value;
	if (pagerId.length==0 || pagerId==null) {
		pagerId = document.getElementById('pageJump1').value;
	}
	var newPage = urlParts[0]+'page'+pagerId+'?'+urlParts[1];
	window.location=newPage;
	return false;
}

function setPerPage(actionUrl, redirectUrl) {
	window.location=actionUrl+'?redirect='+redirectUrl;
}