function putFocus(formInst, elementInst) 
{
   if (document.forms.length > 0) 
   {
      document.forms[formInst].elements[elementInst].focus();
   }
}
