PRO Select_All

;+
; NAME:
;	Select_All
; PURPOSE:
;	Selects all the plots present in the plot table
; CATEGORY:
;	Data Management
; CALLING SEQUENCE:
;	Select_All
; COMMON BLOCKS:
;	Data: plot table
;	SelectionRetrieval: selection list
; SIDE EFECT:
;	See the purpose of the procedure.
;-
; MODIFICATION HISTORY:
;	Created in July 1991 by A.Csillaghy


COMMON SelectionRetrieval, plotsSelected
COMMON Data, plotList

nbElems = N_Elements(plotList)
plotsSelected = plotList.name

END