function blog_backend_remove(id){
	$.ajax({
		url		:	"/index/removeblog",
		type	: 	"POST",
		data	:	({
			id			: id,
			use_ajax	: true
		}),
		datatype: 'html',
		success : function(data){
			$('body').html(data);
		}
	})	
}

function blog_backend_edit(id){
	$.ajax({
		url		:	"/index/newblog",
		type	: 	"POST",
		data	:	({
			id			: id,
			use_ajax	: true,
			showWindow	: true
		}),
		datatype: 'html',
		success : function(data){
			$('body').append(data);
			$(".window_inner").width(850); 
			$(".window_inner").height(800); 
			$("#window[name='blogwindow']").fadeIn();
		}
	})	
}


