
/**
¿Ékkk
*/
var XmlHttp = new ActiveXObject("Microsoft.XMLhttp");
function sendAJAX(url) {
    XmlHttp.Open("POST", url, true);
    XmlHttp.send(null);
			//XmlHttp.onreadystatechange= function(){ServerProcess(id)};
}
function sendAJAX1(url,obj){
    XmlHttp.Open("POST",url,true);
	XmlHttp.send(null);
	XmlHttp.onreadystatechange= function(){ServerProcess(obj)};  
  }
function ServerProcess(obj){
	if (XmlHttp.readystate==4 || XmlHttp.readystate=='complete'){			
		obj.innerHTML=XmlHttp.responsetext;
	}
  }
