// Copyright © 2003 - 2005, Market Truths Limited. All rights reserved.

function OnloadSetFocus()
{
  with (document.forms[document.forms.length-1].elements[0])
  {
    focus();
    value = value; // Set cursor at end. *
    // * Doesn't work in IE4, NN4, Op7, Op8, K341.
  }
}
window.onload=OnloadSetFocus;