  var oWindow = null;

    function Genie(oImg,oWidth,oHeight) { 
      var oContent =  '<html>\n\n  <head>\n    <title>Fish and Flora\<\/title>\n  <\/head>\n\n';
    oContent += '  <body bgcolor="black" style="margin:0;padding:0;" onclick="window.close();">\n';
    oContent += '    <img src="' + oImg + '" width="' + oWidth + '" height="' + oHeight + '" border="0" alt="Photo">\n';
    oContent += '  <\/body>\n\n<\/html';
      if (oWindow != null) { oWindow.close() }
      oWindow   = window.open("","","width=" + oWidth + ",height=" + oHeight + ",top=10,left=10,status");
      oWindow.document.open();
      oWindow.document.write(oContent);
      oWindow.document.close();
      return false;
    } 

    function CloseGenie() {
      if (oWindow && oWindow.open) oWindow.close();
      oWindow = null;
    }
