function encuesta_accion(acc,id_encuesta) {
	oHidden = document.getElementById("accion");
	oForm = document.getElementById("form");
	
	voto = fetchNamedCookie("encuesta_"+id_encuesta);
	
	if (acc == "votar") {
		if(check_opcion()) {
			if(voto == "voto") accion = "ya_voto";
			else {
				setNamedCookie( "encuesta_" + id_encuesta, "voto");
				accion = "votar";
			}
			oHidden.value = accion;
			oForm.submit();
		}
		else alert("Debe seleccionar una opcion!!!");
	}
	else {
		accion = "resultados";
		oHidden.value = accion;
		oForm.submit();
	}
}

function check_opcion() {
	oRadio = document.getElementById("contOpciones").getElementsByTagName("INPUT");
	
	bool = false;
	for (var i=0; i < oRadio.length ; i++){
		if((oRadio[i].tagName == "INPUT") && (oRadio[i].checked != "")) {
			bool = true;				
		}
	}
	
	return bool;
}


