// Open CHIME molecule in new window
   function ChimePopup(filename) {
      ChimeWin=window.open("","ChimeWindow",
          "menubar=no,toolbar=no,scrollbars=yes,status=yes,width=500,height=400")
      ChimeWin.document.writeln("<HTML><HEAD></HEAD>")
      ChimeWin.document.writeln("<BODY bgcolor='#FFFFFF'>")
      ChimeWin.document.writeln("<Center><P>" + filename)
      ChimeWin.document.writeln("<P align='center'><embed src='" + filename + "'")
      ChimeWin.document.writeln(" align='baseline' border='0'")
      ChimeWin.document.writeln(" width='300' height='300'")
      ChimeWin.document.writeln(" script='spacefill 0.5;")
      ChimeWin.document.writeln(" wireframe 0.2;'>")
      ChimeWin.document.writeln("<form><input type='button' value='close'")
      ChimeWin.document.writeln(" onClick='window.close()'></form>")
      ChimeWin.document.writeln("</Center></BODY></HTML>")
      ChimeWin.document.close()
      }
