Analiza como cambie tu código:
Código HTML:
Ver original<script language="JavaScript"> function botonsel(ctrl)
{
for(i=0;i<ctrl.length;i++){
if(ctrl[i].checked) {
alert(ctrl[i].value);
}
}
return false;
}
function ACT1 (form){
form.ACT.value = document.getElementById("Factor").sexedad;
}
<input type = "radio" name ="sexedad" value = "0.6">Varón menor de 65 años
<br> <input type = "radio" name ="sexedad" value = "0.5">Varón de 65 años o mayor
<br> <input type = "radio" name ="sexedad" value = "0.6">Mujer menor de 18 años
<br> <input type = "radio" name ="sexedad" value = "0.5">Mujer de 18 a 65 años
<br> <input type = "radio" name ="sexedad" value = "0.45">Mujer mayor de 65 años
<br> <input type="button" value="miBoton" onclick="botonsel(document.Factor.getElementsByTagName('input'))">