You have a javascript error on the page..

in the HTML you have a script tag that runs the following javascript
document.f.q.focus();
however the page location where it is is BEFORE the form with id "f" in the page.
That script tag should be either wrapped in an onload event handler OR moved to the end of the HTML (just before the close </body>)