;+
; CALLING SEQUENCE: Get_Text, entry, x, y, text, sizeText
; PURPOSE: Loads into variables the texts stored in the table.
;-

PRO Get_Text, entry, x, y, text, sizeText

COMMON TextRetrieval, textTable

x = textTable(entry).x
y = textTable(entry).y
text = textTable(entry).text
sizeText = textTable(entry).size

END

