var ENCUESTAS = {};

ENCUESTAS.votarEncuesta = function(frm) {
	var id_encuesta = frm.id_encuesta;
	var opciones = frm.id_opcion;
	var id_opcion = 0;
	if((frm.id_encuesta != null) && (opciones != null)) {
		var opcionCheck = false;
		for(j=0;j<opciones.length;j++) {
			if(opciones[j].checked) {
				opcionCheck = true;
				id_opcion = opciones[j].value;
				break;
			}
		}
		if(opcionCheck) {
			$.get('/includes_comun/ENCUESTAS.votarEncuesta.php'
				,{id_encuesta: frm.id_encuesta.value, id_opcion: id_opcion}
				,function (respuesta) {
					respArr = respuesta.split('##');
					if(respArr.length == 2) {
						alert(respArr[1]);
						if((respArr[0] != 'ERROR') && (respArr[0].indexOf("/") == 0)) {
							window.location = respArr[0];
						}
					}
				}
			)
		}
		else {
			alert('No has seleccionado ninguna opción de la encuesta');
			return false;
		}
	}
	else {
		alert('Faltan datos en la encuesta');
	}
};