function AfficherImage(img){
  Image1= new Image();
  Image1.src=(img);
  Control(img);
}
function Control(img){
  if((Image1.width!=0)&&(Image1.height!=0)){
    VoirImage(img);
  }
  else{
    fonction="Control('"+img+"')";
    intervalle=setTimeout(fonction,20);
  }
}
function VoirImage(img){
  largeur=Image1.width+2+60;
  if(largeur<135){largeur=135;}
  hauteur=Image1.height+112+60;
  proprietes="width="+ largeur +",height="+ hauteur +",top=100,left=" + ((screen.width - Image1.width+20)/2) + ",top=" + ((screen.height - Image1.height+20)/2) + ",menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,location=no";
  win=window.open("RP_Include/RP_PopUp.asp?w=" + Image1.width +"&h=" + Image1.height + "&i=" + img,"",proprietes);
}