/*	boxkill.js
	M G O'Farrell, III
	021201

	JavaScript to kill the focus box
	around links
*/

function focusHandler(e) { 
  if (!e)
    e = window.event;

  if (e.target) // "Netscape"
    obj = e.target;
  else if (e.srcElement) // Micro$oft
    obj = e.srcElement;
  else // oops! no idea what we've got here
    return;

  obj.blur();
}

function boxKill() { 
  if (document.links)
    for ( i = 0; i < document.links.length; i++ )
      // register our event handler for each link
      document.links[i].onfocus = focusHandler;
}

