;+  
;NAME:
;
; thm_gui_new
;
;PURPOSE:
; GUI for THEMIS data analysis
;
;CALLING SEQUENCE:
; thm_gui_new
;
;INPUT:
; none
; 
; Keywords:
;   Reset - If set will reset all internal settings.  
;           Otherwise, it will try to load the state of the previous call.
;   template_filename - The file name of a previously saved themis template document,
;                   can be used to store user preferences and defaults.
;
;OUTPUT:
; none
;
;HISTORY:
; Made into a wrapper for spd_gui.pro, jmm, 2014-02-11
;
;$LastChangedBy: jimm $
;$LastChangedDate: 2014-02-12 15:49:01 -0800 (Wed, 12 Feb 2014) $
;$LastChangedRevision: 14368 $
;$URL: svn+ssh://thmsvn@ambrosia.ssl.berkeley.edu/repos/spdsoft/tags/spedas_3_00/projects/themis/common/thm_gui_new.pro $
;-----------------------------------------------------------------------------------
PRO thm_gui_new,reset=reset,template_filename=template_filename


  message, /info, 'THM_GUI_NEW is now a wrapper for SPD_GUI'

  spd_gui, reset=reset,template_filename=template_filename

 RETURN

END ;--------------------------------------------------------------------------------