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