
function toggleBottomComment(strStyle)
{
	var divBottomComment = document.getElementById('BottomComment')
	var strClassName = "menuBasComment menuBasComment" + strStyle;
	divBottomComment.className = strClassName;
}

function toggleBottomCommentEmpty()
{
	toggleBottomComment("Empty");
}

