$(function(){
  $("form").bind("submit", function () {
    var buttons = $(this).find(":image, :submit");
    setTimeout(function () {
      buttons.attr("disabled", true);
      setTimeout(function () {
        buttons.attr("disabled", false);
      }, 3000);
    }, 1);
  }).find(":image, :submit").attr("disabled", false);
});

function other_check(str){
  if(str.length > 0){
    document.owned_equipment.owned_equipment_19.checked = true;
  }
}
function other_check2(str){
  if(str.length > 0){
    document.owned_equipment.owned_equipment_122.checked = true;
  }
}

function all_checked(){
  if(confirm("選択された企業をお気に入りから削除してもよろしいですか？")){
    document.form1.submit();
  }
}

function all_destroy(){
  ckbx = document.getElementsByName('checkbox_fav[]');
  for(i=0;i<ckbx.length;i++){
    ckbx[i].checked = true;
  }
  if(confirm("このページの企業をお気に入りから削除してもよろしいですか？")){
    document.form1.submit();
  }
}
