//Handles selecting the proper fields for a logon form depending upon what the user has entered
function setLogonFocus(userNameID, passwordID){
  var userField = document.getElementById(userNameID);
  var passField = document.getElementById(passwordID);
  //logon form is shown
  if(userField != null && passField != null){
    if(userField.value.length == 0){
      userField.focus();
    }else{
      passField.focus();
      passField.select();
    }
  }
  return
}
function openWindowLogonSecurityInfo(width, height, rootScriptPath){
  window.open(rootScriptPath + 'tools/info/logonsecurityinfo.aspx.htm','LogonHash','width=' + width + ',height=' + height + ',location=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes');
}
