
var RandomCandsEcofin = new Array
("バブル", "LBO", "持ち合い", "junk bond", "venture capital",
 "富の再分配", "white knight",
 "偽装", "trading card",   "too fail", "架空取引"
 , "協会 Association", "大量に保有する", "敗北",
 "useful life", "利益率　高い", "subprime", "サブプライム ローン"
 , "foreign currency debt", "currency foreign debt"
 , "bank 金融", "利益率 低い", "旅行 trip", "旅行 travel", "tourist",
 "金融市場 安定", "暗黙知"
);
 
function ecofinRandom() {
  num = Math.floor(Math.random()*RandomCandsEcofin.length);
  var cand = RandomCandsEcofin[num];
  // alert(cand);
  location.href = "./index.php?word="
                  + cand;
//  return(false);
}


function inputFocus() {
  document.getElementById("topInputForm").focus();
}

window.onload = function(){
  inputFocus();
};
