<!--
function buttonDisabled(fm){
	fm.submitBtn.disabled = true;
}
function commentDelete(fm,comment_id){
	if(confirm('削除してもよろしいですか？')){
		fm.comment_id.value = comment_id;
		fm.submit();
	}
}
-->