
//+++++++++++++++++++++ AJAX RELACIONADOS CON LAS APLICACIONES DE TEMAS +++++++++++++++++++++++++++//

// Listar temas
function ajax_listar_temas(tipo,tema, e){

	// Activa la pestaņa
	activaPesta("#w_tema_"+tema,e,tipo,0);

	$.ajax({
		type: "POST",
	 	url: "/inc/aplicacionesPerso/temas/widget/destacados.asp",
		cache: false,
	  	data: "tipoListado="+tipo+"&tema="+tema+"&"+window.location.search.substring(1),
	  	success: function(html){
	    	eval('$("#temas_'+tema+'").html(html);');
	  	}
	});
};

// Listar favoritos
function ajax_listar_temas_favoritos(tipo,tema, e){

	// Activa la pestaņa
	activaPesta("#w_tema_"+tema,e,tipo,1);
	
	//prompt("","/inc/aplicacionesPerso/temas/widget/favoritos.asp?"+window.location.search.substring(1)+"&tipoListado="+tipo+"&tema="+tema)
	
	$.ajax({
		type: "POST",
	  	url: "/inc/aplicacionesPerso/temas/widget/favoritos.asp",
	  	cache: false,
	  	data: window.location.search.substring(1)+"&tipoListado="+tipo+"&tema="+tema,
	  	success: function(html){
	    	eval('$("#temas_'+tema+'").html(html);');
	  	}
	});
};

// Buscar temas
function ajax_buscar_temas(tema, e){
	
	// Activa la pestaņa
	activaPesta("#w_tema_"+tema,e,0,0);

	$.ajax({
		type: "POST",
	  	url: "/inc/aplicacionesPerso/temas/widget/buscador.asp",
	  	cache: false,
	  	data: "tema="+tema +"&"+window.location.search.substring(1),
	  	success: function(html){
	  		eval('$("#temas_'+tema+'").html(html);');
	  	}
	});
};

//+++++++++++++++++++++++++++++++++++++++++++ FIN +++++++++++++++++++++++++++++++++++++++++++++++++//

