/*
 * パスワード入力表示処理
 *
 * @param tagName
*/
function editDisplay(id)
{
    tagEdit = 'edit' + id;
    target = document.all[tagEdit].style;
    if (target.display == 'none') {
        target.display = "block";
    } else {
        target.display = "none";
    }

    tagForm = 'form' + id;
    document.all[tagForm].password.focus();
}

/*
 * 削除確認ウィンドウ
 *
*/
function deleteConfirm()
{
    return confirm("この記事を削除します。\n削除すると、元に戻す事ができません\n\nよろしいですか？");
}