function objetoAjax(){
 var xmlhttp=false;
  try{
   xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
  }catch(e){
   try {
    xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
   }catch(E){
    xmlhttp = false;
   }
  }
  if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
   xmlhttp = new XMLHttpRequest();
  }
  return xmlhttp;
}

function Pagina(nropagina){

 divContenido = document.getElementById('contenido');
 
 ajax=objetoAjax();

 ajax.open("GET", "paginador.php?pagina="+nropagina);
 divContenido.innerHTML= '<img src="../casasperu/imagenes/icons/wait.gif">';
 ajax.onreadystatechange=function() 
 {
  if (ajax.readyState==4) 
  {divContenido.innerHTML = ajax.responseText
  revisa()
  }
 }

 ajax.send(null)
}
