/>
 >
	var hidden_block_id = '<%= $this->block_id->ClientID %>';
	var content_textare_id = '<%= $this->content->ClientID %>';
function show_posting_comment()
{
	var button = $('<%= $this->addComment->ClientID %>')
	button.value="Posting ...";
	button.disabled = true;
	$('comment-loading').show();
}
function on_posting_success()
{
	var button = $('<%= $this->addComment->ClientID %>')
	button.value="Add Comment";
	button.disabled = false;
	$('comment-loading').hide();	
}