window.onload = FormFocus;
function FormFocus() {
if(document.getElementById("UserID3")){
   document.getElementById("UserID3").focus();
}  else if (document.getElementById("otherfieldname")){
   document.getElementById("otherfieldname").focus();
}
}