jeje, posiblemente has de cambiar de cheked a che
cked...ese inglés!!
si te sigue dando problemas, a mi esto me funciona:
Código:
<script>
function sexo_titular(f)
{
var sexotitular;
var sexo_tit=f;
if(sexo_tit==1)//ha pulsado boton A
{
sexotitular='mujer';
document.getElementById('radio_sexo_mujer').checked =true;
document.getElementById('radio_sexo_hombre').checked=false;
}
else
{
//ha pulsado boton B
sexotitular='hombre';
document.getElementById('radio_sexo_mujer').checked =false;
document.getElementById('radio_sexo_hombre').checked=true;
}
}
</script>
<body>
<input type="submit" name="Submit" value="A" onClick="sexo_titular(1)"/>
<input type="submit" name="Submit2" value="B" onClick="sexo_titular(2)"/>
<br />
<input name="radio_sexo_mujer" id="radio_sexo_mujer" type="radio" disabled value="1">
<input name="radio_sexo_hombre" id="radio_sexo_hombre" type="radio" value="2" disabled>
</body>
Saludos!