function get() {
	var xmlHttp;
	try {
		// Firefox, Opera 8.0+, Safari
		xmlHttp = new XMLHttpRequest();
	}
	catch (e) {
		// Internet Explorer
		try {
			xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e) {
			try {
				xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (e) {
				alert("Your browser does not support AJAX!");
				return false;
			}
		}
	}
  
	xmlHttp.onreadystatechange = function() {
		if(xmlHttp.readyState == 4) {
			var date= document.getElementById('noutati');
			if(date && (xmlHttp.responseText || xmlHttp.responseText != '') && xmlHttp.responseText != '0') {
				date.innerHTML =xmlHttp.responseText;
				
			}
			
		}
    }
	
	xmlHttp.open("GET","news.php",true);
	xmlHttp.send(null);

  }
  function adu() {
	var xmlHttp;
	try {
		// Firefox, Opera 8.0+, Safari
		xmlHttp = new XMLHttpRequest();
	}
	catch (e) {
		// Internet Explorer
		try {
			xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e) {
			try {
				xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (e) {
				alert("Your browser does not support AJAX!");
				return false;
			}
		}
	}
  
	xmlHttp.onreadystatechange = function() {
		if(xmlHttp.readyState == 4) {
			var date= document.getElementById('stiri');
			if(date && (xmlHttp.responseText || xmlHttp.responseText != '') && xmlHttp.responseText != '0') {
				date.innerHTML =xmlHttp.responseText;
				
			}
			
		}
    }
	
	xmlHttp.open("GET","news.php?action=integ",true);
	xmlHttp.send(null);

  }
    function first() {
	var xmlHttp;
	try {
		// Firefox, Opera 8.0+, Safari
		xmlHttp = new XMLHttpRequest();
	}
	catch (e) {
		// Internet Explorer
		try {
			xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e) {
			try {
				xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (e) {
				alert("Your browser does not support AJAX!");
				return false;
			}
		}
	}
  
	xmlHttp.onreadystatechange = function() {
		if(xmlHttp.readyState == 4) {
			var date= document.getElementById('noutati');
			if(date && (xmlHttp.responseText || xmlHttp.responseText != '') && xmlHttp.responseText != '0') {
				date.innerHTML =xmlHttp.responseText;
				
			}
			
		}
    }
	
	xmlHttp.open("GET","news.php?action=first",true);
	xmlHttp.send(null);

  }

