pro qlk_sefc_test2, time_range=time_range, local=local, pause=pause	

;+
; NAME:
;         qlk_sefc_test2
; PURPOSE:
;         Demonstrate use of EGSO routines to access EGSO SFC and SEC
;         servers and overplot features on a reference image.
;
; CALLING SEQUENCE:
;         qlk_sefc_test2  [,time_range=times]
;
; KEYWORD INPUT:
;         time_range	Vector containing start and end times
;                       [defaults to 14->17 Jul 2002]
;         local         Use locally stored image  (saves time...)
;
; RESTRICTIONS:
;         Must be connected to the Internet to return node
;         Required Java V1.4 or later
;
; METHOD:
;         User asked to select image within specified time range (using
;         EGSO QLK catalogue). Image retrieved from GSFC. SEC and SFC
;         data spanning time of image retrieved from Trieste and
;         Bradford and overplotted on the image 
;
; HISTORY:
;         26-Oct-2004  Written by Bob Bentley (MSSL/UCL)
;         06-Dec-2004  rdb  Released version
;         30-May-2005  rdb  Stripped out code used in egso_plot_sefc
;
;-

if not keyword_set(time_range) then $
  timerange = ['14-jul-2002 00:00','2002-07-16 23:59:59'] $
else timerange = time_range

help,timerange

egso_get_fits,timerange=timerange,map=map,/conv,local=local

egso_oplot_sefc, map, /verb

ans=''
if keyword_set(pause) then read,'Pause: ',ans

end
