<!--

function SymError()
{
  return true;
}

window.onerror = SymError;

//-->

<!--
function blog_check(theForm)
{

  var radioSelected = false;
  for (i = 0;  i < theForm.comment1.length;  i++)
  {
    if (theForm.comment1[i].checked)
        radioSelected = true;
  }
  if (!radioSelected)
  {
    alert("\"ご連絡内容\" フィールドに値を入力してください。");
    return (false);
  }

  var radioSelected = false;
  for (i = 0;  i < theForm.comment2.length;  i++)
  {
    if (theForm.comment2[i].checked)
        radioSelected = true;
  }
  if (!radioSelected)
  {
    alert("\"プラン選択\" フィールドに値を入力してください。");
    return (false);
  }

  var radioSelected = false;
  for (i = 0;  i < theForm.comment3.length;  i++)
  {
    if (theForm.comment3[i].checked)
        radioSelected = true;
  }
  if (!radioSelected)
  {
    alert("\"電話でのご説明\" フィールドに値を入力してください。");
    return (false);
  }

  if (theForm.cnamekanji.value == "")
  {
    alert("\"御社名\" フィールドに値を入力してください。");
    theForm.cnamekanji.focus();
    return (false);
  }

  if (theForm.namekanji.value == "")
  {
    alert("\"お名前\" フィールドに値を入力してください。");
    theForm.namekanji.focus();
    return (false);
  }

  if (theForm.tel.value == "")
  {
    alert("\"お電話番号\" フィールドに値を入力してください。");
    theForm.tel.focus();
    return (false);
  }

  if (theForm.email.value == "")
  {
    alert("\"メールアドレス\" フィールドに値を入力してください。");
    theForm.email.focus();
    return (false);
  }

  if (theForm.email.value.length < 5)
  {
    alert("入力されたメールアドレスは\n不正なアドレスのようです。\n再度入力し直してください。");
    theForm.email.focus();
    return (false);
  }

  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789--.@_";
  var checkStr = theForm.email.value;
  var allValid = true;
  var validGroups = true;
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
  }
  if (!allValid)
  {
    alert("入力されたメールアドレスは\n不正なアドレスのようです。\n再度入力し直してください。");
    theForm.email.focus();
    return (false);
  }
  if (theForm.address2.value == "")
  {
    alert("\"ご住所\" フィールドに値を入力してください。");
    theForm.address2.focus();
    return (false);
  }

  return (true);
}
//-->