
  var files = new Array('CRW_3281_nebo.jpg', 'CRW_3286_n.jpg', 'CRW_3302.jpg', 'CRW_3315.jpg', 'CRW_3321.jpg', 'CRW_3324.jpg', 'CRW_3326.jpg', 'CRW_3530-1.jpg', 'CRW_3530-sep3.jpg', 'CRW_3531.jpg', 'CRW_3536_bw.jpg', 'CRW_3539.jpg', 'CRW_3546.jpg', 'CRW_3546_bw2.jpg', 'CRW_3546_sep.jpg', 'CRW_3549_bw.jpg', 'CRW_3549_bw_1.jpg', 'CRW_3550.jpg', 'Image_75.jpg');
  var titles = new Array('890 x 593', '890 x 593', '466 x 700', '890 x 602', '890 x 593', '890 x 615', '890 x 593', '890 x 593', '890 x 593', '890 x 593', '619 x 700', '890 x 593', '890 x 593', '890 x 593', '890 x 593', '469 x 700', '890 x 593', '466 x 700', '466 x 700');
  var comments = new Array('', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '');
  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();
 }


