function shw(url) {
dw=window.open('about:blank','',"width=500,height=450,noresize,nomenu,nostatus,notoolbar");
with(dw.document) {
  writeln('<html><head><title>Picture</title></head><body>');
  writeln('<table style="width:100%;height:100%;border:0px">');
  writeln('<tr><td style="text-align:center;"><img src="'+url+'" width="450" onclick="window.close();" /></td></tr>');
  writeln('<tr style="height:12pt"><td style="text-align:center;"><a href="" style="font-family:Verdana,Arial,Sans-serif;font-size:10pt;" onclick="window.close();">Закрыть</a></td></tr>');
  writeln('</table></body></html>');
  close();
};
dw.window.resizeTo(dw.document.images[0].width+50,dw.document.images[0].height+100);
};

