function submitFunc(inp) {

	inp.submit();
}

function submitFuncModePar(inp, inMode, inPar) {
	inp.mode.value = inMode;
	inp.p.value = inPar;
	inp.submit();
}

function dispBlock(id) {
	var disp = document.getElementById(id);

	if (!disp) {
		return false;
	}

	if(disp.style.display == "none") {
 		disp.style.display = "";
	}
	else {
		disp.style.display = "none";
	}

	return true;
}

function editResult(key, row, col, txt)
{
	res = window.prompt(txt, txt);
	if (res != null && res != "") {
		alert('更新');
	}
}















function submitFinish(frm)
{
	if (confirm('全ての音声認識サーバを終了し、認識結果の作成を開始します。よろしいですか？')) {
		frm.submit();
	}
}