function show_image(img, title, width, height) {
  s = 'toolbar=no,menubar=no,location=no,personalbar=no,scrollbars=no,directories=no,status=no,resizable=no,' + 'width=' + width + ',height=' + height;
  NewWin=window.open('','',s);
  NewWin.document.open();
  NewWin.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\"><html><head><meta http-equiv='Content-Type' content='text/html; charset=iso-8859-2' /><meta http-equiv='Content-Language' content='pl' /><title>" + title + "</title></head><body onclick='window.close()' style='margin: 0px;' bgcolor='#000000'>");
  NewWin.document.write("<img style='cursor: pointer' src='" + img + "' width='"+width+"' height='"+height+"' title='Zamknij okno' alt='" + title + "'/>");
  NewWin.document.write("</body></html>");
  NewWin.document.close();
  NewWin.focus();
}
