// JavaScript Document
function ShowPoll(p) {
	new Ajax.Updater('pollc' + p, '/System/ajax/polls_ajax.php',
		{
			method: 'post',
			evalScripts: true,
			parameters: 'p=' + p + '&a=1'
		});
}

function PollVote(p) {
	$('poll' + p).a.value = 2;
	new Ajax.Updater('pollc' + p, '/System/ajax/polls_ajax.php',
		{
			method: 'post',
			evalScripts: true,
			parameters: $('poll' + p).serialize(true),
		});
}

function ShowPollResults(p) {
	new Ajax.Updater('pollc' + p, '/System/ajax/polls_ajax.php',
		{
			method: 'post',
			evalScripts: true,
			parameters: 'p=' + p + '&a=3'
		});
}
