<!-- Begin
function LoadFoto(img){
  foto1= new Image();
  foto1.src=(img);
  Control(img);
}
function Control(img){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img);
  }
  else{
    fonction="Control('"+img+"')";
    interval=setTimeout(fonction,20);
  }
}
function viewFoto(img){
  interval=foto1.width+20;
  high=foto1.height+20;
  pix_w_h="width="+interval+",height="+high;
  image_win=window.open(img,"",pix_w_h);
}
//  End -->
