function submitCommentsForm() {
	$('add_user_comment').request({
		onComplete: function(obj,t) {
			window.location.reload();
//			new Ajax.Updater('user_comments',HOME_DIR+'user_comments/profile_list');
		},
		on404: function() {
			$('user_comments').innerHTML = 'Not Found!';
		},
		onFailure: function() {
			$('user_comments').innerHTML = 'Failed!';
		}
	});
}
