I can't get two of these (Online Movie Quiz Help)

My roommate sent me the URL for this movie quiz today. I can get 28 of the 30, but those last two are elusive for me. Does anyone know what they are? I did a search on “film quiz” and didn’t see this one in there, so I think it’s new for the SDMB.

.
.
.
. (space added for the preview window)
.
.
.
Here are the answers I’ve gotten:

[ spoiler]

  1. Godfather
  2. Star Wars (although it’s actually Empire Strikes Back, but it doesn’t accept that)
  3. Taxi Driver
  4. American History X
  5. Alien
  6. Lost in Translation
  7. Raging Bull
  8. Sin City
  9. Kill Bill
  10. Braveheart
  11. Forrest Gump
  12. Run Lola Run
  13. Spartacus
  14. Trainspotting
  15. The Big Lebowski
  16. A Clockwork Orange
  17. Rainman
  18. Being John Malkovich
  19. The Untouchables
  20. King Kong
  21. ?
  22. The Green Mile
  23. Four Rooms
  24. Desperado
  25. Office Space
  26. ?
  27. X-Men
  28. Underworld
  29. Panic Room
  30. House of Flying Daggers
    [/ spoiler]

I don’t know #26 either, but #21 is

Talk to Her

I got most of the rest except #28 and #30. And yes, the fact that #2 won’t accept the correct answer is lame.

#26 is

Wasabi, a Luc Besson / Jean Reno movie. Not a very good movie, alas, but it’s always nice to see the Greek Bond chick from For Your Eyes Only.

On a whim, I looked at the source of the page. The validation for each field is via javascript, e.g.


onKeyUp="javascript: checkQ('q2')

Look a little further up, and you can get the .js filename:


<script type="text/javascript"
  src="script2.js">
</script>

And in http://funwithmovies.com/part2/script2.js, you can see that when you release a key (onKeyUp) it takes the string from the active field, uppercases it, passes it to sha1Hash() and compares it to the encrypted string at the top of that file.

I leave analysing sha1Hash() as an exercise for the reader.