<html>
<head>
<title>Cambio de checked</title>
<script language="JavaScript">
<!--
function chequear(i)
{
if (i==0)
{
document.formulario.botones[i].checked=1;
document.formulario.botones[1].checked=0;
document.formulario.botones[2].checked=0;
}
else if (i==1)
{
document.formulario.botones[i].checked=1;
document.formulario.botones[0].checked=0;
document.formulario.botones[2].checked=0;
}
else if (i==2)
{
document.formulario.botones[i].checked=1;
document.formulario.botones[0].checked=0;
document.formulario.botones[1].checked=0;
}
}
-->
</script>
</head>
<body>
<form name="formulario">
<input type="radio" id="botones" value="uno" checked onClick="chequear(0);"> uno<br>
<input type="radio" id="botones" value="dos" onClick="chequear(1);"> dos<br>
<input type="radio" id="botones" value="tres" onClick="chequear(2);"> tres<br>
</form>