function openPopup(parameters, options)
{}

function openImage(img)
{
  image= new Image();
  image.src=('/files/'+img);
  isImageCached(img);
}

function Foto(img)
{
  image= new Image();  
  image.src=('/files/'+img); 
  isImageCached(img);
}

function isImageCached(img)
{
  if((image.width!=0)&&(image.height!=0))
  {
    options="width="+(image.width+40)+",height="+(image.height+130)+",scrollbars=yes";
    window.open("/101-0-popup.html?t=1&img="+img+"&inPopup=true","",options);   
  }
  else
  {
  setTimeout("isImageCached('"+img+"')",20);
  }
}
