Polls=function(ID){
	var polls=d.E('Polls_'+ID);
	var MaakKeuze=function(){
		var url=Lokatie.Kopie();
		url.Args={Verzoek:'poll',Stem:this.Keuze.id};
		if (Polls.inSessie) url.Args.insessie=1;
		var Verzoek=new HTTPVerzoek(url,_,Polls.stemReactie);
		Verzoek.poll=this;
		Verzoek.Start();
		return false;
	}
	NaarArray(polls.childNodes).verwerk(function(poll){
		poll.onsubmit=MaakKeuze;
		NaarArray(poll.childNodes[1].firstChild.childNodes).verwerk(function(optie){
			optie.firstChild.onclick=function(){
				poll.Keuze=this;
				this.parentNode.parentNode.nextSibling.disabled=false;
			}
		})
	})
}
Polls.stemReactie=function(){if (!this.Fout){
 this.poll.className+=' Gestemd';
 this.poll.lastChild.innerHTML=this.Respons;
}}