function sortbytype(strType){
	
	// get form value
	
	//
	
	// set hidden value to what the user has inputted	
	//alert(document.getElementById("select-"+strType).value);
	//alert('bob');
	document.pagingform.sortby.value=document.getElementById("select-"+strType).value;
	document.pagingform.submit();
	
	
}

function changepage(strType){
	document.pagingform.page.value=document.getElementById("pagevalue-"+strType).value;
	document.pagingform.submit();
	//pagingform.page
	
}