/**
 * Request Focus of any single document element
 * $VER: 0.8
 * @AUTHOR: Kent Seaton of RequestFocus.com
 * 
 * Access requestFocus() using similar template replacing "form"
 * and "username" appropriately.  Use of document.all.id will result
 * in missing or null object.  This script is handy when working with 
 * forms as you can set the form field accordinly using the body 
 * onLoad="" or the onClick="" event of a reset input.
 * 
 * : requestFocus(document.form.username)
 */

function requestFocus(location) {
  location.focus();
}
