

function voto(){
    if (document.encuesta.voto.value==""){
			alert("Debe seleccionar una opción")
  	}else{
		    //alert(document.encuesta.voto.value)
			document.encuesta.action = "registravoto.asp";
			document.encuesta.submit()
	}
	

}

function actualizaValor(oRad){
 	document.encuesta.voto.value =  oRad.value;
}

function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}



