	function FocusTextBoxComment(e) {
		if (e.value == 'コメントを書き込んでね。') {
			e.value = '';
		}
		e.className = 'texBoxCommentActive';
	}
	
	function BlurTextBoxComment(e) {
		if (e.value == '') {
			e.value = 'コメントを書き込んでね。';
			e.className = 'texBoxComment';
		}
	}