function getResults($var1, $thisAnswer, $whichPoll) {
		new Ajax.Request('pollajaxresult.php',
//		new Ajax.Request('includes/templates/custom/jscript/pollajaxresult.php',
		{
			method: 'post',
			parameters: {'whatQuestion': $var1, 'pollAnswer': $thisAnswer, 'whatPoll': $whichPoll},
			onSuccess: function(transport) {
				var notice = $('notice');
				var response = transport.responseText;
				if (response == "No Votes Yet") {
					//$($var1).innerHTML = response;
				} else {
					$($var1).innerHTML = response;
					$($var1 + '_button').style.display = 'none';
				}
			}
		});
}