<!-- Begin

function CaricaFoto(img){
  foto1= new Image();
  foto1.src=(img);
  Controlla(img);
}
function Controlla(img){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img);
  }
  else{
    funzione="Controlla('"+img+"')";
    intervallo=setTimeout(funzione,20);
  }
}
function viewFoto(img){
//  largh=foto1.width+20;
//  altez=foto1.height+25;
  largh=foto1.width;
  altez=foto1.height;
    scrol = 0;
    xMax = screen.availWidth - 54, yMax = screen.availHeight - 89;

vk = foto1.height/foto1.width;
if (largh>xMax) largh = (xMax), altez = vk*largh, scrol = 0;
if (altez>yMax) altez = (yMax), largh = altez/vk, scrol = 0;
if (largh==xMax) altez = vk*largh, scrol = 0;
if (altez==yMax) largh = altez/vk, scrol = 0;
xleft=(screen.availWidth-(largh+14))/2;
ytop=(screen.availHeight-(altez+64))/2;

  stringa="minimize=0,maximize=0,toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars="+scrol+",resizable=no,width="+(largh+4)+",height="+(altez+4)+",top="+ytop+",left="+xleft;
  finestra=window.open('','',stringa);
    finestra.document.writeln("<html><head><title>Фото</title>")
    finestra.document.writeln("<meta HTTP-EQUIV='Content-Type' CONTENT='text/html; charset=windows-1251'>")
    finestra.document.writeln("<STYLE TYPE=TEXT/CSS>")
    finestra.document.writeln("<!--")
    finestra.document.writeln("   BODY { margin-left:2px; margin-right:2px; margin-top:2px; margin-bottom:2px }")
    finestra.document.writeln("//-->")
    finestra.document.writeln("</STYLE>")
    finestra.document.writeln("</head>")
    finestra.document.writeln("<body bgcolor=black leftmargin=2px rightmargin=2px topmargin=2px bottommargin=2px marginheight=2px marginwidth=2px onLoad='javascript:self.focus();' onclick='JavaScript:window.close();' oncontextmenu='return false'>");
//    finestra.document.writeln("<p align=center>");
    finestra.document.write("<A HREF='javascript:window.close();'>");
    finestra.document.writeln(" <img src='"+img+"' width='"+(largh)+"' height='"+(altez)+"' alt='Кликни, чтобы закрыть это окно' border=0 hspace=0 vspace=0 GALLERYIMG=yes></A>")
    finestra.document.writeln("</body></html>");
}
//  End -->
