function ShowImage(path, caption)
{
  wnd = open("", "displayWindow", "width=640,height=520");
  wnd.document.open();
  wnd.document.write('<html><head><title>' + caption + '</title></head>');
  wnd.document.write('<body bgcolor="E2EEF3"><center>');
  wnd.document.write('<img src="/.img/' + path + '.jpg" width="600" height="400" alt="' + caption +'"><br>');
  wnd.document.write("<h3>" + caption + "<h3>");
  wnd.document.write('<input type="button" value="Закрыть" onClick="window.close()">');
  wnd.document.write('</center></body></html>');
  wnd.document.close();

}

function ShowVideo(path)
{
  window.open("/video/" + path + ".html","","resizable,scrollbars,width=640,height=480");
}

function preload()
{
  tn = new Array();
  var i, a = preload.arguments;
  for (i=0; i<a.length; i++)
    {
      tn[i] = new Image();
      tn[i].src = "/.img" + a[i] + "_1tn.jpg";
    }
}

