
function istanzaXHR() {
	var obj;
	if (window.XMLHttpRequest) {	// Non Internet Explorer
		obj = new XMLHttpRequest();
	} else if (window.ActiveXObject) { // Internet Explorer
		obj = new ActiveXObject("Microsoft.XMLHTTP");
	}
	return obj;
}

obj=istanzaXHR();

function onStateChange() {	// Cambiamento Stato
	if (obj.readyState == 4) { // Caricamento Avvenuto
		if (obj.status == 200) { // con successo
			document.getElementById("risultato").innerHTML=obj.responseText; // risultato
		} 
	}	
}

function invia() {

	inviaXHR(obj,"/wp-content/themes/feedoo-lite-11/getdate.php");
}

function inviaXHR(obj,url) {
	try {	
		obj.open("POST", url, true);	// Preparazione comunicazione
		document.getElementById("risultato").innerHTML="..."; // caricamento in corso...
		obj.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
		obj.onreadystatechange = onStateChange;
		obj.send("");
	} catch (e) {
		document.getElementById("risultato").innerHTML="?";
		alert("Errore: "+e);
	}
	
}
