function hxt_decomp,data
;+
; NAME:
;	HXT_DECOMP
; PURPOSE:
; 	Restore HXT and WBS data from the 8-bit telemetry format to 
;	the full 12 bits
; HISTORY:
;	Written by Jim McTiernan and Hugh Hudson, 19-Dec-1991
;-

lookup = intarr(256)               ; lookup table
lookup(0:15) = findgen(16)

dn = findgen(240) + 16
lookup(16:255) = fix(dn^2/16. + 0.5)

return, lookup(data)
end

