function deleteNews(news_id)
{
var delete_topics = 0;
if(confirm("Do you want to delete this news?"))
	{
	if(confirm("Do you want to delete whole thread?")) {delete_topics = 1;}
	
	jq.post("ajax.php?action=deletenews",
		{
		delete_topics : delete_topics,
		news_id : news_id
		},
		function(data)
			{
			jq("#newsRow"+news_id).hide();
			}
		);
	}
}
