  var bFound = false;

  // for each form

  for (f=0; f < document.forms.length; f++)
  {
    // for each element in each form

    for(i=0; i < document.forms[f].length; i++)
    {
      // if it's not a hidden element

      if (document.forms[f][i].type != "hidden")
      {
        // and it's not disabled

        if (document.forms[f][i].disabled != true)
        {
            // set the focus to it

            document.forms[f][i].focus();
            var bFound = true;
        }
      }
      // if found in this element, stop looking

      if (bFound == true)
        break;
    }
    // if found in this form, stop looking

    if (bFound == true)
      break;
  }

/*
// Sets the focus to the first <input> field (text and not readonly)

iList	= document.getElementsByTagName( 'form' );
for (var i = 0; i < iList.length; i++) { 
	if ( 
		iList[i].readOnly == false &&
		(
			iList[i].type == 'text' ||
			iList[i].type == 'password'
		)
	) {
		iList[i].focus();
		break;
	}
} */

