function addPlayList(addId)
{
	$(function (){
		$("#allList").html("<div align='center'><img src='../images/loading.gif' width='36' height='36' /></div>");
		$(".addlist").remove();
		$("#allList").load("ajax_radio.php", {playlist: "", Newid : addId}, function(result, status, xhr){
			
			if (status == "error") {
				$("#allList").html("Сейчас, мы не можем обработать Ваш запрос.");
				}
		});
	});
}
		 
function delPlayList(delId)
{
	$(function (){
		$("#"+delId).load("ajax_radio.php", {dillist: "", del : delId}, function(result, status, xhr){
			if (status == "error") {
				alert("No load");
				}
				else
				{
					$("#"+delId).parent().parent().parent().remove();
				}
		});
		
	});
}

<!--Обработчик регистрации-->
function SocialVoice(soc){
	$(function (){
		$("#rating").load("ajax_radio.php", { social : soc, station : $("#station").val() }, function(result, status, xhr){
		if (status == "error") {
			/*alert("Сейчас, мы не можем обработать Ваш запрос.");*/
			}
		else
			{
				$("#rating").html(result);
			}
		});
	});
}
 <!--Обработчик конец-->
