function kakunin() {
  if (document.F1.company.value == "") {
    alert("会社名が入力されていません。");
    document.F1.company.focus();
    return(false);
  }
  if (document.F1.last_name.value == "") {
    alert("お名前：姓が入力されていません。");
    document.F1.last_name.focus();
    return(false);
  }
  if (document.F1.first_name.value == "") {
    alert("お名前：名が入力されていません。");
    document.F1.last_name.focus();
    return(false);
  }
  if (document.F1.email.value == "") {
    alert("メールアドレスが入力されていません。");
    document.F1.email.focus();
    return(false);
  }
  return(true);
}

