
function showPollResults(toDisplay){
	document.getElementById('poll-container').innerHTML=toDisplay;
	return true;
}

function poll(answerId){
  var xmlHttp=xmlHttpInit();
  
  xmlHttp.onreadystatechange = function() {
    if (xmlHttp.readyState == 4)
       try {
          if (xmlHttp.status == 200) {
        	response=xmlHttp.responseText;
		showPollResults(response);
	  }
       } catch (e) {
	alert('Hlas sa nepodarilo uložiť!'+e.message);
       }
 
 }
  xmlHttp.open("get","anketa/"+answerId+"/");
  xmlHttp.send(null);
  return false;
}
