How ever, Tim, you should know that you must now address the the "enctype" attribute of your form tag.
<form action="foo.cfm" method="post" name="foo" enctype="multipart/form-data">
If you don't do this, only the text of your file field will be sent. By specifying a multi-part form, you pass the temporary file with it. Just letting you know!
~ben~