  function openpopup( FileName )
  {

    html = '<html><head><title>Photo</title>' +
           '<style type="text/css">*{margin: 0;padding: 0}</style></head>' +
           '<body><img src="' + FileName + '" style="border: 0" ' +
           'name="image" onload="window.resizeTo(document.image.width,document.image.height)" /></body></html>';

    popup=window.open('','image','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
    popup.document.open();
    popup.document.write( html );
    popup.document.focus();
    popup.document.close()

  }

