function ISAT_CommentList__ShowHideReplyArea(ctlId)
{
	var obj = document.getElementById(ctlId);
	(obj.style.display == 'none') ? obj.style.display = '' : obj.style.display = 'none';
}