hi,
U have named the radio button as
radiobutton[0].That was the error.
I think this might help u.
This would disable the first radio button.
<head>
<script>
function DisabledRadio() {
document.form1.radiobutton[0].disabled=true;
}
//-->
</script>
</head>
<body bgcolor="#FFFFFF">
<form name="form1" method="post" action="">
<input type="radio" name="radiobutton" value="radiobutton1" onClick="DisabledRadio();">
<input type="radio" name="radiobutton" value="radiobutton2" onClick="DisabledRadio();">
</form>
</body>
with regards,
preetha