function delete_other_img(id, cat){
	var sure = confirm('Are you sure you want to delete this image?');
	if (sure){
		egg.ajax('pages/other/run/delete_img.php',{params:{'id':id},oncomplete:function(response){
			if (response != '') alert(response);
			else egg.history('/other/display/id/'+cat,true);
		}});
	}
}
function delete_other_cat(id){
	var sure = confirm('Are you sure you want to delete this category and all its images?');
	if (sure){
		egg.ajax('pages/other/run/delete_cat.php',{params:{'id':id},oncomplete:function(response){
			if (response != '') alert(response);
			else egg.history('/other/',true);
		}});
	}
}

