function sh(theURL,x,y) {
  var BodyStyle;
  ss='width='+x+', height='+y+', left=200, top=200 resize=0';
  wind=window.open(theURL,"www",ss);
  wind.document.open();
  wind.document.write('<html><head><title>Просмотр рисунка</title></head>');
  wind.document.write('<body bgcolor="#FFFFFF" text="#000000"  leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>');
  wind.document.write('<div align="center"><p>');
  wind.document.write('<img src="'+theURL+'" width="'+x+'" height="'+y+'" border="0"></div>');
  wind.document.write('</body></html>');
  wind.document.close();
  wind.focus();
}
