/* ************** Places Focus on the First Field of the Form ************** */

function putFocus(formInst, elementInst) {
  if (document.forms.length > 0) {
   document.forms[formInst].elements[elementInst].focus();
   document.forms[formInst].elements[elementInst].select();
  }
 }
 
 // The second number in the "onLoad" command in the body
// tag determines the form's focus. Counting starts with '0'
 /* ************** End ************** */
