function votar(idCMSSeccion) {
	var form = document.getElementById("encuesta_seccion_"+ idCMSSeccion),
		idEncuesta = form.idEncuesta.value,
		idEncuesta_Opcion = form.idEncuesta_Opcion.value;
	if (idEncuesta_Opcion == 0)
		window.alert("Debe seleccionar una opción para votar");
	else if (getCookie("CMSVotosEncustas['"+idEncuesta+"']") != idEncuesta)
		//window.PopUp("../contenidos/votar_encuesta.html?idEncuesta="+ idEncuesta +"&idEncuesta_Opcion="+ idEncuesta_Opcion);
		window._post("../_post/votar_encuesta.php?idEncuesta="+form.idEncuesta.value+"&encuesta_opcion="+form.idEncuesta_Opcion.value);
	else
		window.alert("Usted ya voto esta encuesta");
}
