function resetComments(request){
	if ($("captcha_error") != null) {
		$("captcha_error").show();
	}

	if (request.status == 200) {
		var div = 'loop_all_comments' + $F('div-index');
		window.opener.document.getElementById(div).innerHTML = request.responseText;
//		Recaptcha.reload();
		window.close();
	}
	if (request.status == 210) {
		Recaptcha.reload();
		if ($("captcha_error") != null) {
			$("captcha_error").show();
		}
	}
}

function toggleComment(i) {
	var commentDiv = "comments" + i;
	var imageId = "comment_arrow" + i;
	$(commentDiv).toggle();
	if ($(imageId).src.indexOf("commentArrowSmall_right.gif") > 0) {
		$(imageId).src = "/images/leg_highlights/commentArrowSmall_down.gif";
	} else {
		$(imageId).src = "/images/leg_highlights/commentArrowSmall_right.gif";
	}
}

