function addComment(){
	$('addCommentForm').request({
		  onComplete: function(){subscriptionSent();}
		})
}

function addCommentWithParams(params){
	$('addCommentForm').request({
		  onComplete: function(){subscriptionSentWithParams(params);}
		})
}

function subscriptionSent() {
	reload(1,0);
}

function subscriptionSentWithParams(params) {
	window.location.href += '?xmc='+escape(params)+'&onglet=1';
	//reloadWithExtraParams(1,0, params);
}