function vote(num, id, nbr_note, note_tot)
{
$("sc"+id).innerHTML = '';
new Ajax.Request('inc/enregistre.php?id='+num+'&idelem='+id+'&nbr_note='+nbr_note+'&note_tot='+note_tot,
{
asynchronous:true,
method:'get',
onSuccess: function(t){
	         $("sc"+id).innerHTML+= t.responseText;
			  new Effect.BlindDown("sc"+id)
			 },
onComplete:function(){
	         $("sc"+id).show();
	  },
	  onLoading:function(){
	         $("sc"+id).show();
	    }
  });
}