function run_box(date2,TYT_rss,typ,sort){

  $.ajax({
  url: "_render2.php?date2="+date2+"&TYT_rss="+TYT_rss+"&typ="+typ+"&sort="+sort,
  cache: false,
  success: function(html){
    $("#box_render").html("");
    $("#box_render").append(html);
  },
  beforeSend: function(html){
    $("#box_render").html("");
    $("#box_render").append("Loading...");
  }
  });
  
}

function code(){
    
    $("#box_cod").css('background','black');
	  $("#box_cod").css('display','block');
	  $("#box_cod").css("opacity","0.8");
	  $("#box_cod").css('PositionLeft',0);
    $("#box_cod").css('PositionTop',0);
    
}

