
function reload_center(url,autors,new_id,id_temas){$.post(url,{ autor: autors,news: new_id ,temas: id_temas}, show_text);
};

function show_text (txt){
$("#center").animate({height: "fadeOut"}, 0)
$("#center").html(txt)
$("#center").animate({height: "fadeIn"}, 300);
  }


