

function track(type,id)
{
	jQuery.ajax({
		type: "POST",
		url: "index.php" ,
		data: "m="+type+"&action=track_" + type + "&id=" + id,
		success: function(msg){}
	});
}