

function ShowBigPic(width,height,picture,tytul)
{
      NewWindow=window.open('', '','width='+width+',height='+height+',toolbar=no,directories=no,menubar=no,locations=no,status=no,scrollbars=no,resizable=no,fullscreen=no');

      NewWindow.document.open();

      NewWindow.document.writeln("<html>\n<head>\n");
      NewWindow.document.writeln("<title>"+tytul+"</title>");      
      NewWindow.document.writeln("</head>");
      NewWindow.document.writeln("<body style=\"margin-top: 0; margin-left: 0; background: #FFFFFF;\">");
      NewWindow.document.writeln("<a href=\"javascript:window.close();\"><img src=\""+picture+"\" border=\"0\" alt=\"\" ></a>");
      NewWindow.document.writeln("</body>\n</html>\n");
      NewWindow.document.close();
      NewWindow.focus();
  return;
}

