var pid = $("input[id='txtPID']").val();
var timestamp = (new Date()).valueOf(); 
$.getJSON("/gh/hdlGetCount.ashx?tm="+timestamp+'&pid='+pid,function(data,ts){
    if(ts=='success')
    {
        $("#ReadCount").html(data.ReadCount);
        $("#GoodCount").html(data.GoodCount);
        $("#FavCount").html(data.FavCount);
    }
//    else
//    {
//        $("#ReadCount").html("<img src='/images/icoProcess.gif' >");
//        $("#GoodCount").html("<img src='/images/icoProcess.gif' >");
//        $("#FavCount").html("<img src='/images/icoProcess.gif' >");
//    }
});
