function votar(enquete, opcao) {
	var url  = 'index.php';
	var pars = 'act=votar&enqueteNr='+enquete+'&opcao='+opcao;

	var myAjax = new Ajax.Updater( 'enquete', url, { method: 'get', parameters: pars });
}

var callbacksGlobais = {
	onCreate: function(){
//		Element.hide('carrinho');
//		Element.show('chamadaEmCurso');
	},

	onComplete: function() {
		if(Ajax.activeRequestCount == 0){
//			Element.show('carrinho');
//			Element.hide('chamadaEmCurso');
		}
	}
};

//Ajax.Responders.register(callbacksGlobais);
