Código HTML:
 function getXMLHttpRequest(){var aVersions=["MSXML2.XMLHttp.5.0","MSXML2.XMLHttp.4.0","MSXML2.XMLHttp.3.0","MSXML2.XMLHttp","Microsoft.XMLHttp"];if(window.XMLHttpRequest){return new XMLHttpRequest()}else if(window.ActiveXObject){for(var i=0;i<aVersions.length;i++){try{var oXmlHttp=new ActiveXObject(aVersions[i]);return oXmlHttp}catch(error){}}}}
function cargar_p(v) {
 capa = document.getElementById('Stats');
 boton = document.getElementById(v);
 capa.innerHTML = '<img src="load.gif" alt="Cargando...">';
 ajax = getXMLHttpRequest();
 ajax.open("GET", "mods/pStats.php?v="+v);
 ajax.onreadystatechange=function() {
  if (ajax.readyState==4) {
   capa.innerHTML = ajax.responseText;
   boton.style.background = "url('images/lihover.jpg') repeat-x";
  }
 }
 ajax.send(null);
}
 
 

