
  var files = new Array('01.jpg', '02.jpg', '03.jpg', '04.jpg', '05.jpg', '06.jpg', '07.jpg', '08.jpg', '09.jpg', '10.jpg', '11.jpg', '12.jpg', '13.jpg', '14.jpg');
  var titles = new Array('1805 x 1200 by NIKON D70 at 46.0mm (46.0), f/13.0,   (1/640), metering=matrix {2004:04:18 11:13:12}', '1715 x 1140 by NIKON D70 at 22.0mm (22.0), f/11.0,   (1/400), metering=matrix {2004:04:18 11:13:33}', '1654 x 1100 by NIKON D70 at 18.0mm (18.0), f/7.1,   (1/500), (flash), metering=matrix {2004:04:18 11:16:57}', '1805 x 1200 by NIKON D70 at 46.0mm (46.0), f/13.0,   (1/640), metering=matrix {2004:04:18 11:13:12}', ' at 46.0mm (46.0), f/13.0,   (1/640), metering=matrix', '1805 x 1200 by NIKON D70 at 70.0mm (70.0), f/7.1,   (1/200), metering=matrix, program (auto) {2004:04:18 11:52:29}', '1504 x 1000 at 70.0mm (70.0), f/9.0,   (1/320), metering=matrix, program (auto)', '1504 x 1000 by NIKON D70 at 18.0mm (18.0), f/10.0,   (1/400), metering=matrix, program (auto) {2004:04:18 12:11:29}', '1053 x 700 by NIKON D70 at 70.0mm (70.0), f/7.1,   (1/200), metering=matrix {2004:04:18 12:30:54}', ' at 18.0mm (18.0), f/7.1,   (1/500), (flash), metering=matrix', '1805 x 1200 at 46.0mm (46.0), f/13.0,   (1/640), metering=matrix', '1805 x 1200 at 46.0mm (46.0), f/13.0,   (1/640), metering=matrix', '1805 x 1200 at 46.0mm (46.0), f/13.0,   (1/640), metering=matrix', ' at 22.0mm (22.0), f/11.0,   (1/400), metering=matrix');
  var comments = new Array('Demeter', '&#1045;&#1074;&#1075;&#1077;&#1085;&#1080;&#1081;-&#1051;&#1091;&#1096;&#1080;&#1085;', '&#1050;&#1086;&#1085;&#1089;&#1090;&#1072;&#1085;&#1090;&#1080;&#1085;', '&#1082;&#1086;&#1083;&#1083;&#1077;&#1075;&#1080;', '&#1077;&#1089;&#1083;&#1080;-&#1073;-&#1085;&#1077;-&#1088;&#1091;&#1082;&#1080;---&#1091;&#1096;&#1080;-&#1073;&#1099;&#1083;&#1080; &#1073;&#1099; &#1074; &#1082;&#1072;&#1076;&#1088;&#1077;', '&#1074;&#1089;&#1077;---&#1090;&#1072;&#1084;!', '&#1087;&#1088;&#1091;&#1076;', '&#1103;-&#1087;&#1088;&#1077;&#1082;&#1083;&#1086;&#1085;&#1103;&#1102;-&#1082;&#1086;&#1083;&#1077;&#1085;&#1080;-&#1087;&#1077;&#1088;&#1077;&#1076;', '&#1091;&#1090;&#1086;&#1095;&#1082;&#1080;', '&#1076;&#1072;&#1083;&#1077;&#1082;&#1086;-&#1075;&#1083;&#1103;&#1078;&#1091;!', '&#1087;&#1088;&#1086;&#1089;&#1090;&#1086;-&#1082;&#1086;&#1088;&#1072;!', '&#1084;&#1072;&#1083;&#1072;&#1093;&#1080;&#1090;!', '&#1073;&#1077;&#1088;&#1105;&#1079;&#1082;&#1080;-&#1074;-&#1074;&#1086;&#1076;&#1077;', '&#1087;&#1086;&#1076;&#1074;&#1086;&#1076;&#1085;&#1086;&#1077;-&#1094;&#1072;&#1088;&#1089;&#1090;&#1074;&#1086;');
  function printAll(){
    var res = "<center>";
    for (i=0; i<files.length; i++){
      res+='<img src="images/'+files[i]+'" title="'+titles[i]+'"><br>'+comments[i]+'<p>';    
    }
    return res+"</center>";
  }
  function imgshow(n){
    src = files[n];
    title = titles[n];
    wnd=window;
//    wnd=window.open("javascript:null", "bigpic","status=no,resizable=1,scrollbars=1,toolbar=no,menubar=no, screenX="+1000+",screenY="+800);
    wnd.document.write("<html><head><title>"+src+"</title>");
    wnd.document.write('<META content="text/html; charset=windows-1251" http-equiv=Content-Type></head>');
    wnd.document.write('<body vlink="white" link="white" bgcolor=black text="white"><center><script language=JavaScript src=index.js></script>');
    wnd.document.write('<table align=center>');
    wnd.document.write('<tr height=800><td width=100 align=center>');
    wnd.document.write(comments[n]+'<p>&nbsp;<p><a  href="index.html">--==*^*==--</a><p>');
  for (i=0; i<files.length; i++){
   if (i==n)wnd.document.write(files[i]+'<br>');
   else wnd.document.write('<input type=button value="'+files[i]+'" onclick="imgshow('+i+')"><br>');
  }
    wnd.document.write('</td><td>&nbsp;</td><td width="900">');
    wnd.document.writeln('<a href="images/'+src+'">');
    wnd.document.write('<img src="images/'+src+'" title="'+title+'" border=1>');
    wnd.document.writeln('</a></td></tr></table>');
    wnd.document.writeln('</body></html>');
    wnd.document.close();
    wnd.focus();
 }


