   function mostra_lista(pg){
  	   //verifica se o browser tem suporte a ajax_result
	  try {
         ajax_result = new ActiveXObject("Microsoft.XMLHTTP");
      } 
      catch(e) {
         try {
            ajax_result = new ActiveXObject("Msxml2.XMLHTTP");
         }
	     catch(ex) {
            try {
               ajax_result = new XMLHttpRequest();
            }
	        catch(exc) {
               alert("Esse browser não tem recursos para uso do ajax_result");
               ajax_result = null;
            }
         }
      }
	  //se tiver suporte ajax_result
	  if(ajax_result){
	    
		 resultados_lista_html  = document.getElementById("resultados_lista");
		 
		 estado = document.getElementById("estado");
		 hotspot_type = document.getElementById("hotspot_type");
		 cidade = document.getElementById("cidade");
		 
		 document.getElementById("lista").className="aberta";
		 document.getElementById("box_economia").className="fechada";
		 
		 
		 cidade_id = cidade.options[cidade.selectedIndex].value;
		 _hotspot_type = hotspot_type.options[hotspot_type.selectedIndex].value;
		 estado_id = estado.options[estado.selectedIndex].value;

		 
	     ajax_result.open("POST", "classes.php", true);
		 ajax_result.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
		 
		 ajax_result.onreadystatechange = function() {
			if(ajax_result.readyState == 1) {
			   resultados_lista_html.innerHTML = "<table><tr><td><img src='images/loadinfo.net.gif' width=24 /></td><td><span>carregando...</span></td></tr></table>"; 
	        }
            if(ajax_result.readyState == 4 ) {
			   if(ajax_result.responseText) {
			      resultados_lista_html.innerHTML= ajax_result.responseText;
			   }
			   else {
				   resultados_lista_html.innerHTML = "errooo";
				  
			   }
            }
         }
	     var params_3 = "cidade="+cidade_id+"&estado="+estado_id+"&type="+_hotspot_type+"&pg="+pg+"&acao=listResults";
         ajax_result.send(params_3);
      }
   }

	function esconde_tudo(){
	
		document.getElementById("lista").className="fechada";
		document.getElementById("box_economia").className="box_tips_aberto";
		
	}