function affiche_parution(id, largeur, hauteur) {
  largeur = largeur+17;
  hauteur = hauteur+4;
  if (hauteur > (screen.height-150)) hauteur = (screen.height-150);
  var win = window.open('/agrandissement.php?id='+id, 'coupure', 'toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,width='+largeur+',height='+hauteur+',left=' + ((screen.width-largeur)/2) + ',top=' + ((screen.height-hauteur-20)/2));
  win.focus();
};

function affiche_photo(id, largeur, hauteur) {
  largeur = largeur+17;
  hauteur = hauteur+4;
  if (hauteur > (screen.height-150)) hauteur = (screen.height-150);
  var win = window.open('/admin/exposition/photo.php?id='+id, 'photo', 'toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,width='+largeur+',height='+hauteur+',left=' + ((screen.width-largeur)/2) + ',top=' + ((screen.height-hauteur-20)/2));
  win.focus();
};
