<!--

function doPagination(str,pg_num,type){

    if (type == 'home_reply' || type == 'home_share' || type == 'notice_and_reply' || type == 'system_notice'){

        //reply box disappear

        //parse uid from query_str
        if (str.indexOf("&") > -1) str=str.substring(0,str.indexOf("&"));
        str = str.substring(4,str.length);
        doInlineCall('sharebook',type,str,pg_num);

    }

}

//-->
