function stat(id) {
	var title = $("#playlistitem_" + id).html();
	
	//Create temporary words.
	title = title.replace(/&amp;/g, 'temporary_and');
	
	$.ajax({
		type: "POST",
		url: "stat/stat.php",
		data: "add=yes&title=" + title
	});
}