function viewOlderComment(offset, strUrl, type, id){
    if(type == undefined || type == '')
        type = '';
    if(id == undefined || id == '')
        id = 0;

    $.ajax({
        type : "POST",
        url : strUrl,
        dataType : "json",
        data: {
                txtOffSet : offset,
                txtType : type,
                txtId : id
        },
        success : function(data){
            $("#divCommentContainer").append(data.content);
            $("#" + data.id).hide(0,
                function(){
                    $(this).slideToggle('slow',
                        function(){
                            $("#commentMore").html(data.link)
                        })
                    }
            );
        },
        error : function(XMLHttpRequest, textStatus, errorThrown) {
            //$("#comment-content").html("An error occurred.");
            //$("#spanSubCategory").show("slide");
        }
    });

    return false;
}