function onloadWhois() {
  if (document.fileComplaintForm) {
    if (document.fileComplaintForm.firstname) {
      document.fileComplaintForm.firstname.focus();
    }
  } else if (document.whois) {
    if (document.whois.captchaResponse) {
      document.whois.captchaResponse.focus();
    }
  } else {
    if (document.whoisSearch) {
      if (document.whoisSearch.domainName) {
        document.whoisSearch.domainName.focus();
      }
    }
  }
}