function activatePoster(id,value)
{
 var transBG = document.createElement("div");
 transBG.id = "posterbg";

 document.body.appendChild(transBG);
 if(transBG.offsetHeight < document.body.offsetHeight)
 transBG.style.height = document.body.offsetHeight + "px";

 info= $("#container"+id).clone(true);
 info.addClass("PosterLarge");
 info.css("display","block");

 $("body").prepend(info);

 $('#rate'+id).rating('Controller.php5?rpcRating', {curvalue: value,id:id});
}
