// ひとこと画像投稿部分の初期化

function PictureFormDefault() {
	if ( document.getElementById("word-picture-anchor") && document.getElementById("word-picture-file") ) {
		document.getElementById("word-picture-anchor").style.display = "block";
		document.getElementById("word-picture-file").style.display = "none";
	}
}

function PictureFormAppear() {
	if ( document.getElementById("word-picture-anchor") && document.getElementById("word-picture-file") ) {
		document.getElementById("word-picture-anchor").style.display = "none";
		document.getElementById("word-picture-file").style.display = "block";
	}
}