This is generic function to focus on first non hidden input element in the form
var FormUtil = new Object;
FormUtil.focusOnFirst = function () {
if (document.forms.length > 0) {
for (var i=0; i < document.forms[0].elements.length; i++) {
var aField = document.forms[0].elements[i];
if (aField.type != “hidden”) {
aField.focus();
return;
}
}
}
};
Call this after page load
<body onload=”FormUtil.focusOnFirst()”>