PRO Adjust_Table,newLength

; Procedure to change the length of the plot table stored
; in the COMMON Data.
;
; Created by A.Csillaghy in June 1991

COMMON Data, dummy, table

tableLength = N_Elements(table(0,*))
newTable = Replicate( 0.0, newLength, tableLength )
newTable(0,0) = table
table = newTable

END
