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

