function PopupCentrer(page) 
{ 
  imagePOP     = new Image();
  imagePOP.src = page;
  nbf          = 0;
  affiche();
}
function affiche()
{
  if (imagePOP.width != 0) {setTimeout("pop()",0);return;}
  nbf++
  if (nbf<200) {setTimeout("affiche()",20);return;}
}
function pop()
{ 
  largeur = imagePOP.width;
  hauteur = imagePOP.height;
  ttop=(screen.height-hauteur)/2;
  tleft=(screen.width-largeur)/2;
  POPUP = window.open("","affiche","top="+ttop+",left="+tleft+",width="+largeur+",height="+hauteur+",menubar=no,scrollbars=auto,statusbar=no"); 
  POPUP.document.write("<html><title>EVE | Photo</title></html><body MARGINWIDTH=0 MARGINHEIGHT=0><a href='javascript:window.close()'><img name='img' style='position:absolute;top:0;left:0;' src="+imagePOP.src+" border=0 alt='Cliquez pour fermer la fenêtre'></a><div style='position:absolute;top:100%;margin-top:-23px;left:0;width:110;height:23px;'><img src='images/copyright_photos.gif' width='100' height='23' border='0'></div></body>"); 
}
