function loadXMLDoc(dname) 
{
if (window.XMLHttpRequest)
  {
  xhttp=new XMLHttpRequest();
  }
else
  {
  xhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xhttp.open("GET",dname,false);
xhttp.send("");
return xhttp.responseXML;
}

function processaVoto(resposta){
	xmlDoc=loadXMLDoc("xml/enquetes.xml");
x=xmlDoc.getElementsByTagName("resposta");

votos = x[resposta].getAttribute("votos");
novoVoto = new Number(votos+1);
x[resposta].setAttribute("votos",novoVoto);
}

