// JavaScript Document
function getRadioButtonSelectedValue(ctrl)
{  
    for(i=0;i<ctrl.length;i++) {
        if(ctrl[i].checked) { ok=1; valor=ctrl[i].value; } 
		}
	if(ok=1) { return valor; } else {  return (false);}	
		
}


function votar()

       {
	   
	   
	   	 p=document.getElementById("pregunta").value;
       	 r=getRadioButtonSelectedValue(document.formu.respuesta); 
		 ip=document.getElementById("ip").value;
   		 eid=document.getElementById("encuesta").value;
         
		 
		
         Pagina('votar.php?eid='+eid+'&p='+p+'&r='+r+'&ip='+ip,'resultado_encuesta');

       }
	   
	   
