Image Upload not working with IE

hi There-
I made an image uploader which works with FF and Safari, but not IE. Any help would be much appreciated. Here’s the code:

<?php

$new_file_name=$_POST['location'].".jpg";
$path= "images/".$new_file_name;

if(isset($_POST['Submit']))
{
if($HTTP_POST_FILES['ufile']['type']!="image/jpeg")
{
echo "Error: Only .JPG's can be uploaded";
}
else
{
if(copy($HTTP_POST_FILES['ufile']['tmp_name'], $path))
{ 
echo "Image Successfully Uploaded<BR/>";
}
}
}
?>