function activer_commentaires(id,titre){
  var hauteur=screen.height-100;var largeur=screen.width-200;
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  //window.open("","dfg",
  var t="top="+top+",left="+left+",width="+largeur+",height="+hauteur;
  var page = './commentaires.php?id='+id+'&titre_page='+titre;
  var pleft=Math.floor((window.screen.width-largeur)/2);
  var ptop=Math.floor((window.screen.height-hauteur)/2);
  //w=open(page,'details_objet',t+',toolbar=no,scrollbars=yes,resizable=no,status=no');
  window.open(page,'obj'+id,'resizable=yes,dialog=yes,all,scrollbars=yes,width='+largeur+',height='+hauteur+',left='+pleft+',top='+ptop);
}
