function ShowFoto(img)
{
  fot=new Image();
  fot.src=(img);
  CheckIt(img);
}
function CheckIt(img)
{
  if((fot.width!=0)&&(fot.height!=0))
  {
    viewFoto(img);
  }
  else
  {
    onemore="ShowFoto('"+img+"')";
    waitin=setTimeout(onemore,20);
  }
}
function viewFoto(img)
{
  xw=fot.width;
  yh=fot.height;
  xparam="menubar=no,toolbar=no,scrollbars=no,location=no,status=no,width="+xw+",height="+yh;
  nwin=window.open("","_blank",xparam);
  nwin.document.write("<head><title>BASTET-A-TET</title></head>");
  nwin.document.write("<body style='margin: 0;'><img src='"+img+"' border='0' alt=''></body>");
}

