function GetVoting(url, votingId) {
		var httpRequest;
		
		if (window.XMLHttpRequest) { // Mozilla, Safari, ...
		    httpRequest = new XMLHttpRequest();
		} else if (window.ActiveXObject) { // IE
		    httpRequest = new ActiveXObject("Microsoft.XMLHTTP");
		}
		httpRequest.onreadystatechange = function() { onVotingLoaded(httpRequest, votingId) };
		httpRequest.open('GET', url, true);
		httpRequest.send(null);
}

function onVotingLoaded(httpRequest, votingId) {
	if (httpRequest.readyState != 4) {
		return;
	}

	if (httpRequest.status != 200) {
		return;
	}
	
	data = httpRequest.responseText;
	document.getElementById('Voting' + votingId).innerHTML = data;
}
