
function aff_list_type(value,div,url){
	$.ajax({
		type: "POST",
		url: url,
		data: "id="+ value,
		beforeSend: function(html){$("#loader_"+div).show(); },
		success: function(html){
			$("#"+div).html(html);
			$("#loader_"+div).hide();
		}
	});
}	


function aff_list_type_hp(media,famille,thema,div,url){
	$.ajax({
		type: "POST",
		url: url,
		data: "media="+media+"&famille="+famille+"&thema="+thema,
		beforeSend: function(html){$("#loader_"+div).show(); },
		success: function(html){
			$("#"+div).html(html);
			$("#loader_"+div).hide();
		}
	});
}	

function sort_result(url){
	window.location.replace(url);
}	
