/***************************************************************************
 *                                forum.class.php
 *                            -------------------
 *   Project              : Total Jerface
 *   Begin                : July 19, 2010
 *   Copyright            : (C) 2010 Robert Herman ( maverfax@gmail.com )
 *
 ***************************************************************************/

/******************************************************************
 *                           FORUM FUNCTIONS
 ******************************************************************/

function edit_post(id)
{
	
}

function delete_post(id, is_topic)
{
	var accepted = confirm("Are you sure you wish to delete this post?")

	if(accepted)
	{
		if(is_topic == '1')
		{
			var action = 'topic';
		}
		
		else
		{
			var action = 'reply';
		}
		
		$.ajax({
			url: '_inc/ajax/forum.php?id=' + id + '&action=delete_' + action,
		 	success: function() {
				if(is_topic == '1')
				{
					window.location = "forum.php";
				}

				else $("#" + action + "_" + id).slideUp('fast');
			}
		});
	}
}
