//What I'm trying to do here is set a conditional whereby if recaptcha is verified
//then reload the all_comments div and reset the form
//But if it is not verified, reload the form div

function resetComments(request){
	$("loop_all_comments").innerHTML = request.responseText;
	$("contact_form").reset();
	Recaptcha.reload();
	
	if(request.status == 200)
	{
		if ($("captcha_error") != null)
		{
			$("captcha_error").hide();
		}	
	}
}