window.addEvent('domready', function() {
	loadFormulaire();
});

function sendMsg() {
			//Empty the log and show the spinning indicator.
			var formu = $('com_formulaire');
			$('com_load').set('html', 'Envoi de votre commentaire...');
			//Set the options of the form's Request handler. 
			//("this" refers to the $('myForm') element).
			$('com_form').set('send', {
				evalScripts: true,
				onComplete: function(response) { 
					//formu.removeClass('ajax-loading');
					formu.set('html', response);
				},
				onFailure: function(){
					alert('?');
				}
				
			});
			//Send the form.
			$('com_form').send();
}
function signaler(id)
{
	var top=(screen.height-400)/2;
	var left=(screen.width-500)/2;
	window.open("../commentaires/commentaires-signaler.php?id="+id,"","top="+top+",left="+left+",width=500,height=400,menubar=no,scrollbars=no,statusbar=no");
}

function publier_fb(contenu) {
	FB.api('/me/feed', 'post', { message: contenu+' (commenté sur '+location.href+')' }, function(response) {
		if (!response || response.error) {
			// erreur lors de l'envoi au compte FB
		} else {
			// message bien posté
		}
	});

}
