
//----------------------------------------------------------
function show_iframe(w,h,src){
	LeftPosition = (screen.width) ? (screen.width - w)/2 : 400;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 450;
	w = w + 16;
/*	if(h == 600) h = h/2;*/
//	w = 200;
//	h = 0;
	window.open(src,'','width='+w+',height='+h+',resizable=no, scrollbars=yes, status=yes,titlebar=no,location=no,menubar=no,directories=no,copyhistory=no');
}
//----------------------------------------------------------
function ischecked() {
 	opc = document.forms.encuesta.opcion;
	val = 0;

	for (var i = 0 ; i < opc.length ; i++) {
		if (opc[i].checked) {val = opc[i].value;}
    }
	
	
	return val;
}
//----------------------------------------------------------
function validarVoto(id_encuesta){
	var voto = fetchNamedCookie("encuesta_"+id_encuesta);
	
	if(voto != "voto"){/*El tipo no voto todav?a*/
		var oDiv = document.getElementById("votar");

		oDiv.style.display = "block";
	}
	else{/*El tipo ya voto*/
		var oMsjEncuesta = document.getElementById("mensaje");
				
		oMsjEncuesta.style.display = "block";
		oMsjEncuesta.innerHTML = "Usted ya vot&oacute;.";
	}
}
//----------------------------------------------------------

function votar(id_encuesta,acc){
	var value = ischecked();
	/*var voto = fetchNamedCookie("encuesta_"+id_encuesta);*/
	
	if(acc == "voto" && validarEleccion()){
		var oMsjEncuesta = document.getElementById("mensaje");
		oMsjEncuesta.style.display = "block";
		oMsjEncuesta.innerHTML = "Usted ya vot&oacute;.";
		
		document.getElementById("votar").style.display = "none";
	}
	
	if(validarEleccion()){
			if(acc != "noVoto") {
				if(value > 0){
					show_iframe(420,500,"/encuestas/ver_resultados.php?id=" + id_encuesta + "&idopcion=" + value);
					setNamedCookie( "encuesta_"+id_encuesta, "voto");
				}
				
				else show_iframe(420,500,"/encuestas/ver_resultados.php?id=" + id_encuesta + "&voto=1");
			}
			else show_iframe(420,500,"/encuestas/ver_resultados.php?id=" + id_encuesta + "&voto=1");
	}
	else{
		if(acc == "noVoto"){
			show_iframe(420,500,"/encuestas/ver_resultados.php?id=" + id_encuesta + "&voto=1");
		}
		else{
			var oMsjEncuesta = document.getElementById("mensaje");
			oMsjEncuesta.style.display = "block";
			oMsjEncuesta.innerHTML = "Seleccione opci&oacute;n";
			return false;
		}
	//alert("Para votar primero debe seleccionar una opci?n de la encuesta.");
	}
}

//----------------------------------------------------------
function validarEleccion(){
	opc = document.forms.encuesta.opcion;
	val = 0;

	for (var i = 0 ; i < opc.length ; i++) {
		if (opc[i].checked) val = opc[i].value;
    }

	if(val==0){
		return false
	}
	else{ return true; }
}

/*Limpiar msj correspondientes a la encuesta*/
function limpiarMsj(){	
	if(document.getElementById("votar").style.display == "block"){
		var oMsjEncuesta = document.getElementById("mensaje");
		oMsjEncuesta.style.display = "none";
	}
}

