var answerID;
var submitted = false;
function SetPollAnswer(id) {
	answerID = id;
	$("poll_submit").disabled = submitted;
}

function SubmitVote(pollID) {
	AiN.AiB.Site.polls.SubmitPollVote(pollID, answerID, SubmitVote_Callback);
	submitted = true;
	$("poll_submit").disabled = true;
}

function SubmitVote_Callback(response) {
	document.location.reload();
}
