function showComment(post_id)
{
	var e = document.getElementById('comment-' + post_id);
	if (e.style.display == 'none')
	{
		e.style.display = '';
	} else
	{
		e.style.display = 'none';
	}
}

function showCommentEntry(post_id)
{
	var e = document.getElementById('comment-entry-' + post_id);
	if (e.style.display == 'none')
	{
		e.style.display = '';
	} else
	{
		e.style.display = 'none';
	}
}
