/*Places the focus on the first editable field in a form on any web page
  1. REFERENCE THIS JS SCRIPT FILE IN THE HEAD OF THE HTML PAGE
  2.  Add the onLoad event handler into the BODY tag
Ex:<BODY OnLoad="placeFocus()">*/

function placeFocus() {
if (document.forms.length > 0) {
var field = document.forms[0];
for (i = 0; i < field.length; i++) {
if ((field.elements[i].type == "text") || (field.elements[i].type == "textarea") || (field.elements[i].type.toString().charAt(0) == "s")) {
document.forms[0].elements[i].focus();
break;
         }
      }
   }
}
