function createRequestObj(){ // creo un'istanza XMLHttpRequest
	var re;
	var browser=navigator.appName;
	if (browser=="Microsoft Internet Explorer"){ // sniff browser
		re=new ActiveXObject("Microsoft.XMLHTTP");
	} else re=new XMLHttpRequest();
	return re;
}

var http=createRequestObj();
var cellavecchia
function popola_giorno(cella,contenitore,data){
	var url="popola.php?DATA=" + data;
	http.open("get", url , true);
	http.onreadystatechange=function(){
		if (http.readyState==4 || http.readyState=="complete"){
			if (http.status == 200){
				document.getElementById(contenitore).innerHTML = (http.responseText);
			}
		}
	}
	http.send(null);
	if (cellavecchia!=null){
		if (cellavecchia.id=='C_20101121'){
			cellavecchia.style.border="2px red solid";
		}else{
			cellavecchia.style.borderLeft="1px #999999 solid";
			cellavecchia.style.borderTop="1px #999999 solid";
			cellavecchia.style.borderRight="";
			cellavecchia.style.borderBottom="";
		}
	}
	cella.style.border="2px black solid";
	cellavecchia= cella;
}
