function radioCurrentComment() {
	var comment_id ;
	for (var i=0; i<document.getElementById('commentsListForm').commentsRadio.length; i++) {
		comment_id = document.getElementById('commentsListForm').commentsRadio[i].value ;
		div_id = "cmtFull_" + comment_id
		arrow_id = "cmtArrow_" + comment_id

		if (document.getElementById('commentsListForm').commentsRadio[i].checked) {
			document.getElementById(div_id).style.backgroundColor="#ffffcc";
			document.getElementById(arrow_id).style.display="block";
		}
		else {
			document.getElementById(div_id).style.backgroundColor="#eeeeee";
			document.getElementById(arrow_id).style.display="none";
		}
	}
}
