function curPage(nPage, nMultiply){
  
	document.Form1.hidPageNum.value = nPage;
	document.Form1.hidMultiply.value = nMultiply;
	document.Form1.hidChangePage.value = 'true';
	document.Form1.submit();

}
///////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////
function setRPP(howMany){
		document.Form1.hidAction.value = "SetRPP";
		document.Form1.hidRPP.value = howMany;
    document.Form1.submit();
}

