//AJAX

var xmlHttp2;

function news(user_id, value)
{
	xmlHttp2 = false;
	if (window.xmlHttpRequest) {
		xmlHttp2 = new xmlHttpRequest();
		if (xmlHttp2.overrideMimeType) { xmlHttp2.overrideMimeType("text/plain"); }
	} else if (window.ActiveXObject) {
		try { xmlHttp2 = new ActiveXObject("Msxml2.xmlHttp"); } catch (e) { try { xmlHttp2 = new ActiveXObject("Microsoft.xmlHttp"); } catch (e) 
{} }
	}
	if (!xmlHttp2) { 
		  alert ("Браузърът ви трябва да поддържа JavaScript!");
		  return;
	}
	xmlHttp2.onreadystatechange = function() { 
	
		if (xmlHttp2.readyState==4)
		{
		if (xmlHttp2.responseText=='3' || xmlHttp2.responseText==3)
		document.getElementById('news').style.display = 'none';
		}

	}
	var url="/news.php";
	url=url+"?user_id="+user_id;
	url=url+"&mode="+value;
	
	url += "&r="+Math.round(Math.random()*1000);
	xmlHttp2.open("GET", url, true);
	xmlHttp2.send(null);

}
