function show_pict(title,src)
{
  w_pict = open("", 'title', "width=400,height=400,menubar=no,status=no,toolbar=no,resizable=yes");
  w_pict.document.open();
  w_pict.document.writeln('<html><head><title>' + title + '</title></head><body BGCOLOR="#FAEBD7">');
  w_pict.document.writeln('<img src= ' + src + ' border=0 ALIGN="MIDDLE"' + 
//  'onLoad = "window.innerWidth=window.document.images[0].width;window.innerHeigth=window.document.images[0].height">');
  'onLoad = "window.resizeTo(window.document.images[0].width + 28, window.document.images[0].height + 48)">');
  w_pict.document.writeln('</body></html>');
  w_pict.document.close();
  w_pict.focus();
}
