In outputFile.asp about line 33, change the following from:
select case extension
case ".jpg", ".jpeg", ".gif", ".zip", ".doc"
allowFile=true
case else
allowFile=false
end select
To the following:
select case extension
case ".jpg", ".JPG", ".jpeg", ".gif", ".zip", ".doc"
allowFile=true
case else
allowFile=false
end select
You will notice the .JPG added. I trust that helps.