
function pollInclude(divid,pollnr,id,width)
{
	$("#"+divid).html('Chargement ..');
	$.ajax({
		url:"http://www.radiomojito.fr/includes/plugins/sondages/include.php",
		type:"get",
		data:"pollnr="+pollnr+"&id="+id+"&width="+width,
		success:function(msg)
		{
			$("#"+divid).html('');
			$("#"+divid).append(msg);
		},
		error:function()
		{
			$("#"+divid).html('Erreur !');
		}
	});
}
