﻿function collectionmemorial(value)
{
    var obj = $('#favouratememorial');
    $.get(FixupUrl('~/HttpHandler/SimpleHttpHandler.ashx'),{method: 'CollectionMemorial', memorial_id: value}, function(result) {
        result = result.toLowerCase();
        if(result == 'ok')
        {
            alert("添加成功！");
            obj.hide();
            if($('#nbsp'))
                $('#nbsp').show();
        }
        else if(result == 'no')
        {
            alert("添加失败！");
            obj.show();
        }
        else if(result == 'sameuser')
        {
            alert("不能添加自己的纪念馆");
            obj.show();
        }
    });
}
