
  function close_thickbox(id)
  {
    if ( id ) {
      $.ajax({
        type: "GET",
        url: "refresh_cote.php",
        data: "id="+id,
        success: function(html){
          $("span#evaluation_"+id).html(html);
        }
      });
    }
    
    tb_remove();
  }

