  sflag = false;

function sendchk_bbs(){
 if (sflag){
    alert('二重投稿になります。');
    return false;
  }

  txt0  = "";
  name    = document.getElementById("name").value;
  subject = document.getElementById("subject").value;
  comment = document.getElementById("comment").value;
  if (name    == '') txt0 += "お名前を入力してください。\n";
  if (subject == '') txt0 += "タイトルを入力してください。\n";
  if (comment == '') txt0 += "コメントを入力してください。\n";
  if (txt0 != ''){
    alert(txt0);
    return false;//中止
  }
  sflag = true;
//  document.getElementById("bbsfrm").submit();

  return true;
}

function sendchk_lnkbrd(){
 if (sflag){
    alert('二重投稿になります。');
    return false;
  }

  txt0  = "";
  name    = document.getElementById("name").value;
  subject = document.getElementById("subject").value;
  comment = document.getElementById("comment").value;
  comment = document.getElementById("hpurl").value;
  comment = document.getElementById("lnkurl").value;
  if (name    == '') txt0 += "管理者名を入力してください。\n";
  if (subject == '') txt0 += "タイトルを入力してください。\n";
  if (comment == '') txt0 += "コメントを入力してください。\n";
  if (hpurl   == '') txt0 += "サイトURLを入力してください。\n";
  if (lnkurl  == '') txt0 += "リンクURLを入力してください。\n";
  if (txt0 != ''){
    alert(txt0);
    return false;//中止
  }
  sflag = true;
//  document.getElementById("bbsfrm").submit();

  return true;
}

function sendchk_hpmake(){
 if (sflag){
    alert('二重投稿になります。');
    return false;
  }

  txt0  = "";
  name    = document.getElementById("name").value;
  subject = document.getElementById("subject").value;
  comment = document.getElementById("comment").value;
  if (name    == '') txt0 += "お名前を入力してください。\n";
  if (subject == '') txt0 += "タイトルを入力してください。\n";
  if (comment == '') txt0 += "ご質問を入力してください。\n";
  if (txt0 != ''){
    alert(txt0);
    return false;//中止
  }

  email  = document.getElementById("email").value;
  chkflg = document.getElementById("ctrl1").checked;
  if ((chkflg != '') && (email == '')){
    alert("メールアドレスの入力が必要です。");
    return false;//中止
  }
  sflag = true;
//  document.getElementById("bbsfrm").submit();

  return true;
}

function sendchk_sdmail(){
 if (sflag){
    alert('二重投稿になります。');
    return false;
  }

  txt0  = "";
  name    = document.getElementById("name").value;
  email = document.getElementById("email").value;
  subject = document.getElementById("subject").value;
  comment = document.getElementById("comment").value;
  if (name    == '') txt0 += "お名前を入力してください。\n";
  if (email   == '') txt0 += "メールアドレスを入力してください。\n";
  if (subject == '') txt0 += "タイトルを入力してください。\n";
  if (comment == '') txt0 += "コメントを入力してください。\n";
  if (txt0 != ''){
    alert(txt0);
    return false;//中止
  }
  sflag = true;
//  document.getElementById("bbsfrm").submit();

  return true;
}

function send_chk(){
 if (sflag){
    alert('二重投稿になります。');
    return false;//中止
  }
  return true;
}

