
function xmlhttp(){
        var xmlhttp;
        try{xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");}
        catch(e){
            try{xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");}
            catch(e){
                try{xmlhttp = new XMLHttpRequest();}
                catch(e){
                    xmlhttp = false;
                }
            }
        }
        if (!xmlhttp)
                return null;
            else
                return xmlhttp;
    }
    
 
  function ver_asociaciones(provincia,pag){
  	$.ajax({ type: "POST",
  	 url: "http://www.hosteleriadigital.es/ajax/mostrar_asociaciones.php", 
  	 data: "pag="+pag+"&provincia="+provincia+"&elementos_pagina=2",
  	 success: function(datos){ 
  	 	document.getElementById('div_list').innerHTML=(datos); 
  	 } 
  	}); 
  }
  
  function actualizar_asociaciones(provincia){
  	ver_asociaciones(provincia,1);
  	mostrar_noticias_asociacion(provincia,1);
  }
  
  function mostrar_noticias_asociacion(provincia,pag){
  	$.ajax({ type: "POST",
  	 //url: "http://www.hosteleriadigital.es/ajax/mostrar_noticias_asociacion.php", 
  	 //data: "provincia="+provincia+"&pag="+pag,
  	 url: "http://www.hosteleriadigital.es/ajax/mostrar_asociaciones_grande.php", 
  	 data: "pag="+pag+"&provincia="+provincia+"&elementos_pagina=10",
  	 success: function(datos){ 
  	 	document.getElementById('noticias_asociaciones').innerHTML=(datos); 
  	 } 
  	}); 
  }
