Look to text file for variable

Can AppleScript look at a designated text file and place it’s contents into the script. For example, I would like the following script to look at a text file containing:

203,120,1076,651

and then use that series of numbers to replace the ones present in the script.

Thanks, Franco

tell application "Finder"
	set currwindow to front window
	set the bounds of currwindow to {203, 120, 1076, 651}
	set the current view of currwindow to icon view
	set the sidebar width of currwindow to {0}
	set {wLeft, wTop, wRight, wBottom} to get bounds of currwindow
end tell

set theFile to (path to desktop as text) & "20090209-090510.txt"
set oBounds to read file theFile
set AppleScript's text item delimiters to ","
set oBounds to text items of oBounds
set AppleScript's text item delimiters to ""
tell application "Finder" to tell front window
	set the bounds to oBounds
	set the current view to icon view
	set the sidebar width to {0}
	set {wLeft, wTop, wRight, wBottom} to get bounds
end tell

Yvan KOENIG (from FRANCE lundi 9 février 2009 09:14:25)