function deleteForumPost(id, obj)
{
    if (confirm('Подтвердите удаление сообщения')) {
       jQuery.get(obj.href); 
       jQuery('#post'+id).remove(); 
    }

    return false;
}


function deleteForumTopic(id, obj)
{
    if (confirm('Подтвердите удаление темы')) {
       jQuery.get(obj.href); 
       jQuery('#content').html('тема удалена');
    }

    return false;
}
