/**
 * @author alexis web
 */

function sendComment() {
	$('comment').disabled = true;
	$('submit').disabled = true;
	new Request({
		'method': 'post',
		'url': 'blogs/saveComment/',
		'data': {'comment': $('comment').value, 'post_id': $('post_id').value},
		'onComplete': function(func, xml) {
			
		},
		evalScripts: true
	}).send();
	
	return false;
}

