From what I can tell the focus attribute of the <stripes:form> tag generates some JavaScript in the page like this:
<script type="text/javascript">var z=document.getElementById('database.id'); try{z.focus();z.select();} catch(e) {}</script>
This periodically causes problems for Internet Explorer because IE doesn't allow changing HTML elements via DOM until they are fully rendered. See [Google maps crash IE|
http://vidmar.net/weblog/archive/2005/08/22/2121.aspx] for further discussion, as things presently stand IE can prevent the page from rendering and redirect you to an error page.
<script type="text/javascript">setTimeout("var z=document.getElementById('database.id'); try{z.focus();z.select();} catch(e) {}", 1)</script>
Walter: I don't have easy access to a modern IE. Can you please let me know if this would/does work for you?
ps. I can't believe that is in this day and age IE is still this crappy! At least just through a JS exception instead of aborting the whole page load. Sigh.