
// Input: Name of the Select control having the list of pages
//        Index of the page to navigate to
function _ISD_UI_Paging_gotoPage(pageIndexCtrl, pageIndexVal)
{
	pageIndexCtrl = _ISD_UI_EnsureObject(pageIndexCtrl);
  pageIndexCtrl.value = pageIndexVal;
  pageIndexCtrl.onchange();
}


// Input: two parameters
function _ISD_UI_Paging_changeSize(virpath, ctrl)
{
	var href = virpath + '/' + 'App_Utility/Paging.aspx' + '?' + 'PageSize=' + ctrl.value;
	_ISD_UI_Window_openHidden(href, 'wndPaging');
	
	return true;
}


