function pollInclude(divid,pollnr,id,width)
{
	$("#"+divid).html('Loading poll..');
	$.ajax({
		url:"/tool/poll/include.php",
		type:"get",
		data:"pollnr="+pollnr+"&id="+id+"&width="+width,
		success:function(msg)
		{
			$("#"+divid).html('');
			$("#"+divid).append(msg);
		},
		error:function()
		{
			$("#"+divid).html('Error!');
		}
	});
}
