function note(id,note,img,mode){
getXhr()
xhr.onreadystatechange = function()
    {
     if(xhr.readyState == 4 && xhr.status == 200)
     {
     document.getElementById('n'+id).innerHTML=xhr.responseText;
     }
    }
xhr.open("GET",img+"note.php?id="+id+"&note="+note+"&img="+img,true);
xhr.send(null);
}


function PopUpFilm()
{
  PopUp(document.getElementById('BandeAnnonce').innerHTML,550,400);
}
