$(document).ready(function(){
	$("a[id*=approve_]").click(function(){
		var ids = ($(this).attr("id")).split("_");
		var method = ids[0];
		var id = ids[1];
		$.ajax({
			type : "post",
			url : "traffictrade_ajax.php",
			dataType : "json",
			data : "id=" + id + "&method=" + method,
			success : function(data){
				alert(data.message);
			}
		});
	});
	$("a[id*=decline_]").click(function(){
		var ids = ($(this).attr("id")).split("_");
		var method = ids[0];
		var id = ids[1];
		$.ajax({
			type : "post",
			url : "traffictrade_ajax.php",
			dataType : "json",
			data : "id=" + id + "&method=" + method,
			success : function(data){
				alert(data.message);
			}
		});
	});
});

