function buscar_datos(entidad,nropagina,idioma)
{
	var post_data;
	xmlhttp = conectar();
    xmlhttp.open("POST", "buscador.php", true);
    xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
    xmlhttp.onreadystatechange=function() {
	    //alert(xmlhttp.readyState);
        if (xmlhttp.readyState==1) {
            document.getElementById('listadoBuscador').innerHTML = '<img src=images/indicator.gif alt=loading />';
        }
        if (xmlhttp.readyState==4) {
					document.getElementById('listadoBuscador').innerHTML = xmlhttp.responseText;
        }
    }
	
	switch(entidad)
	{
		case "convocatorias":
        // Convocatorias
          post_data = 'entidad='+entidad+'&nropagina='+nropagina+'&key='+document.getElementById('key').value+'&idioma='+document.getElementById('idioma_actual').value+'&area='+document.getElementById('area').value+'&mes='+document.getElementById('mes').options[document.getElementById('mes').selectedIndex].value+'&anio='+document.getElementById('anio').options[document.getElementById('anio').selectedIndex].value;
		  		
          break;
		default:
		  alert("ENTIDAD NO DEFINIDA");
	}

	xmlhttp.send(post_data);
}
