/*================================================================================================*/
// 更新確認メッセージ表示
/*================================================================================================*/
function updateconf(strAction) {

  // 取り込み開始
  if (window.confirm("更新しますか？")) {
    document.formUpdate.btnUpdate.disabled = true;
    document.formUpdate.action = strAction;
    document.formUpdate.submit();
  } else {
    return false;
  }

}

/*================================================================================================*/
// 更新確認メッセージ表示
/*================================================================================================*/
function deleteconf(strAction) {

  // 取り込み開始
  if (window.confirm("削除しますか？")) {
    document.formUpdate.btnDelete.disabled = true;
    document.formUpdate.action = strAction;
    document.formUpdate.submit();
  } else {
    return false;
  }

}

/*================================================================================================*/
// その他確認メッセージ表示
/*================================================================================================*/
function otherconf(strMsg, strAction) {

  //----------------------------------------------------------------------
  // ボタンを使用不可にする
  //----------------------------------------------------------------------

  // 取り込み開始
  if (window.confirm(strMsg)) {
    document.formOther.btnOther.disabled = true;
    document.formOther.action = strAction;
    document.formOther.submit();
  } else {
    return false;
  }

}

/*================================================================================================*/
// その他実行
/*================================================================================================*/
function otherAction(strAction) {

  //----------------------------------------------------------------------
  // ボタンを使用不可にする
  //----------------------------------------------------------------------

  document.formOther.action = strAction;
  document.formOther.submit();

}

/*================================================================================================*/
// コンボボックス変更時
/*================================================================================================*/
function cboChange(strFlg) {

  document.formOther.c_maker_flg.value = strFlg;
  document.formOther.submit();

}


