function showImg(url)
{
  var imgWin = window.open();
  with (imgWin)
  {
    document.write('<html><head><title>' + url + '</title></head>');
    document.write('<body style="text-align: center; background-image: url(/i/bg.gif); background-color: #572500; background-repeat: repeat-x;">');

    document.write('<img src="' + url + '" style="border: 7px solid #824518" onclick="window.close();">');
    document.write('</body></html>');
  }
}
