

 function Set_Focus(formName, itemNum) {
  if (document.forms.length > 0) {
   document.forms[formName].elements[itemNum].focus();
  }
 }
