Close a file

How do I tell an application to close a file?
For instance, I have a quicktime file open and want an applescript to leave Quicktime up, but close the open file.

Hi Benglett

try this

tell application "QuickTime Player"
	close window 1
end tell

Thanks, it worked.