pro ltf_plotinfo, filnam1, filnam2, filnamdc, $
		imin, imax, label, 	xst, xen, yst, yen, $
		nx, ny, xstep, ystep, maxoff, avgoff, strver
;
sout = 'DC = ' + filnamdc
plottime, 0.15, 0.91, sout, 0.8

sout = 'IM1 = ' + filnam1 + '/ IM2 = ' + filnam2 
plottime, 0.15, 0.88, sout, 0.8

if n_elements(label) gt 0 then plottime, 0.05, 0.96, label, 0.80

sout = 'Pixels Used: ' + strtrim(xst,2) + ':' + strtrim(xen,2) + ' , ' + $
		strtrim(yst,2) + ':' + strtrim(yen,2)
plottime, 0.15, 0.85, SOUT, 0.8

sout = 'Block Size: ' + strtrim(fix(nx),2) + 'x' + strtrim(fix(ny),2) + $
		'   Step Size: ' + strtrim(xstep,2) + ' & ' + strtrim(ystep,2)
plottime, 0.15, 0.82, SOUT, 0.8

sout = 'Avg Line Offset -- Max: ' + string(maxoff, '(f8.2)') + $
		' Avg: ' + string(avgoff, '(f8.2)')
plottime, 0.15, 0.79, sout, 0.8

sout = 'IMIN = ' + strtrim(imin,2) + '  IMAX = ' + strtrim(imax,2)
plottime, 0.15, 0.76, sout, 0.8

plottime, 0.02, 0.02, strver
plottime

return
end
