What I did was add this code after closing the body tag:
Code:
<script type="text/javascript">
document.getElementById('loginForm:userName').focus();
</script>
I think IExplorer 7 is case sensitive when it comes to javascript, so you need to use getElementById and not getelementbyid or any other variation. Also, you cannot use the property onload for the body tag, because this would disable all the checkings ICEFaces does periodically, like connection heartbeat and session status.
Hope this helps.