	function ChangePage(id)
	{
		// save the page clicked
		
		//document.all.PageNumber.value = id;
		document.getElementById('ctl00_ContentPlaceHolder1_lstModelList_PageNumber').value = id;
		
		// call the __doPostBack function to post back the form and execute the PageClick event
		__doPostBack('PageClick','');
		
	}
	
	function ChangeAdminPage(id)
	{
		// save the page clicked
		
		//document.all.PageNumber.value = id;
		document.getElementById('ctl00_ContentPlaceHolder1_lstModelList_PageNumber').value = id;
		
		// call the __doPostBack function to post back the form and execute the PageClick event
		__doPostBack('PageClick','');
		
	}
