/*
  (c) SpuyMore Web/Applications
  http://www.spuymore.nl/
*/

var _MyKickoffLogin = {
  /* constants */
  USERNAMENAME: 'username',
  PASSWORDNAME: 'password',

  /* static methods */
  focusOnLoad: function()
  {
    if ('attachEvent' in window)
      window.attachEvent('onload', this._focus);
    else if ('addEventListener' in window)
      window.addEventListener('load', this._focus, false);
  },

  _focus: function()
  {
    var oElm;
    if (((oElm = window.document.getElementsByName(_MyKickoffLogin.USERNAMENAME)).length && (!oElm.item(0).value.length)) ||
        ((oElm = window.document.getElementsByName(_MyKickoffLogin.PASSWORDNAME)).length))
      oElm.item(0).focus();
  }
};
