function get_comment()
{
	$("#comment").text("");
	
	$("#indicator").show();
	
    $.ajax({
          url: "./get_comment.php",
          cache: false,
          success: function(html){
            $("#comment").text(html);
			$("#indicator").hide();
          }
        });


}