/*function show_iframe(w,h,src){
	LeftPosition = 200;
	TopPosition = 150;
	iframe = document.getElementById("frame_enc");
	if(iframe.style.display != "block"){
		fondo = document.getElementById("ifrBack");
		iframe.style.left = LeftPosition + "px";
		iframe.style.top = TopPosition + "px";
		iframe.style.width = w;
		iframe.style.height = h;
		iframe.src = "";
		setTimeout("iframe.src ='"+ src +"';iframe.style.display = 'block'", 250);	
	}
}*/
//----------------------------------------------------------
function show_iframe(w,h,src){
	LeftPosition = (screen.width) ? (screen.width - w)/2 : 200;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 150;
	w = w + 16;
/*	if(h == 600) h = h/2;*/
//	w = 200;
	h = 0;
	window.open(src,'','width='+w+',height='+h+',resizable=no, scrollbars=no, 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 votar(id_encuesta){
	value = ischecked();
	
	voto = fetchNamedCookie("encuesta_"+id_encuesta)
	
	if(voto != "voto") {
		if(value > 0){
			show_iframe(400,600,"../encuestas/ver_resultados.php?id=" + id_encuesta + "&idopcion=" + value);
			setNamedCookie( "encuesta_"+id_encuesta, "voto");
		}
		else show_iframe(400,600,"../encuestas/ver_resultados.php?id=" + id_encuesta + "&voto=1");
	}
	else show_iframe(400,600,"../encuestas/ver_resultados.php?id=" + id_encuesta + "&voto=1");
}
*/
/*function votar(id_encuesta){
	value = ischecked();
	voto = fetchNamedCookie("encuesta_"+id_encuesta)
	if(voto != "voto") {
		if(value > 0){
			show_iframe(400,280,"../encuestas/ver_resultados.php?id=" + id_encuesta + "&idopcion=" + value);
			setNamedCookie( "encuesta_"+id_encuesta, "voto");
		}
		else show_iframe(400,280,"../encuestas/ver_resultados.php?id=" + id_encuesta + "&voto=1");
	}
	else show_iframe(400,280,"../encuestas/ver_resultados.php?id=" + id_encuesta + "&voto=1");
}*/
function votar(id_encuesta){
	value = ischecked();
	if(value > 0){
		show_iframe(400,280,"../encuestas/ver_resultados.php?id=" + id_encuesta + "&idopcion=" + value);
	}else{
		alert("Debe seleccionar una opción");
	}
}
//----------------------------------------------------------
/*
function votar2(id_encuesta){
	value = ischecked();
	
	voto = fetchNamedCookie("encuesta_"+id_encuesta)
	
	if(voto != "voto") {
		if(value > 0){
			show_iframe2(400,600,"../encuestas/ver_resultados.php?id=" + id_encuesta + "&idopcion=" + value);
			setNamedCookie( "encuesta_"+id_encuesta, "voto");
		}
		else show_iframe2(400,600,"../encuestas/ver_resultados.php?id=" + id_encuesta + "&voto=1");
	}
	else show_iframe2(400,600,"../encuestas/ver_resultados.php?id=" + id_encuesta + "&voto=1");
}
*/
function votar2(id_encuesta){
	value = ischecked();
	if(value > 0){
		show_iframe2(400,600,"../encuestas/ver_resultados.php?id=" + id_encuesta + "&idopcion=" + value);
	}else {
		alert("Debe seleccionar una opcion");	
	}
}

