codice:
  onload = function()
  {
    var
      elementiForm = document.forms[0].elements,
      i = 0;
    while(i < elementiForm.length && elementiForm[i].getAttribute("type") != "text")
      i++;
    if (elementiForm[i].getAttribute("type") == "text")
      elementiForm[i].focus();
  }