﻿/////////////////////////////////////////////////////////////////////////////////////
//Paging
////////////////////////////////////////////////////////////////////////////////////
function ChangePage(id)
{
    // save the page clicked
    document.getElementById('ctl00_ContentPlaceHolder1_PageNumber').value = id;   
    // call the __doPostBack function to post back the form and execute the PageClick event
    __doPostBack('ctl00$ContentPlaceHolder1$PageCL','');		    
}
/////////////////////////////////////////////////////////////////////////////////////
