var poll_site = 'http://' + document.location.host;
Poll = function(id) {
	this.id = id;
	
	this.display = function(template, container) {
		var url = poll_site + '/common/includes/polls/polls/' + this.id + '.' + template + '?container=' + container
		new Ajax.Updater(container, url, { method: 'get' });
	}
}
