var xmlHttp;
if (window.XMLHttpRequest) {
	xmlHttp = new XMLHttpRequest();
} else if (window.ActiveXObject) {
	xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
} else { alert("XMLHttpRequest ERROR");
}
function LOAD(ITEM,URL) {
	document.getElementById("cuerpo").innerHTML="";
	document.getElementById("cuerpo").className="AjaxLoading";
	xmlHttp.open("GET",URL);
	xmlHttp.onreadystatechange = function() {
		if(xmlHttp.readyState == 4 && xmlHttp.status == 200){
			document.getElementById("cuerpo").className="cuerpo";
			document.getElementById("cuerpo").innerHTML=xmlHttp.responseText;
			document.getElementById(ITEM).className=null;
		}
	}
	xmlHttp.send(null);
}

