﻿
function showShot(file,title,w,h){
  ok=window.open("","","left=5,top=5,width="+w+",height="+h+
 		",menubar=no,directories=no,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes");
  with(ok){
    document.writeln("<html>");
    document.writeln("<head><title>"+title+"</title></head>");
    document.writeln("<body style=\"margin:0; padding:0;\">");
    document.writeln("<a href=\"#\" onclick=\"window.close();\">");
    document.writeln("<img src=\""+file+"\" alt=\"klikněte pro zavření\" title=\"klikněte pro zavření\" style=\"border: 0;\"/></a>");
    document.writeln("</body>");
    document.writeln("</html>");
  }
}