function Ajax(){
 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 filtro1(proVoA){
 divListado = document.getElementById('buscador');
 ajax=Ajax();
 ajax.open("GET", "buscador.inc.php?proVoA="+proVoA);
 ajax.onreadystatechange=function() 
  {
  if (ajax.readyState==4) {
   divListado.innerHTML = ajax.responseText
  }
 }
 ajax.send(null)
}

function filtro2(idTip,proVoA){
 divListado = document.getElementById('buscador');
 ajax=Ajax();
 ajax.open("GET", "buscador.inc.php?proVoA="+proVoA+"&idTip="+idTip);
 ajax.onreadystatechange=function() 
  {
  if (ajax.readyState==4) {
   divListado.innerHTML = ajax.responseText
  }
 }
 ajax.send(null)
}

function filtro3(idDep,idTip,proVoA){
 divListado = document.getElementById('buscador');
 ajax=Ajax();
 ajax.open("GET", "buscador.inc.php?proVoA="+proVoA+"&idTip="+idTip+"&idDep="+idDep);
 ajax.onreadystatechange=function() 
  {
  if (ajax.readyState==4) {
   divListado.innerHTML = ajax.responseText
  }
 }
 ajax.send(null)
}

