And your question is?
Anyway, here is an optimised version of your code
PHP Code:
<script type="text/javascript">
function makeChoice(select)
{
if(select)
{
document.form1.otherChoice.disabled=true;
}
else
{
document.form1.otherChoice.disabled=false;
document.form1.otherChoice.focus();
}
}
</script>
<body onload="makeChoice(0)">
<form name="form1" action="#" method="post">
<tr>
<td>
<input type="radio" name="accno" value="1" onclick="makeChoice(1)" /> Yes
<input type="radio" checked="checked" name="accno" value="cedu" onclick="makeChoice(0)"/> No
</td>
</tr>
<tr>
<td>
<br />Global Account Number:
</td>
<td>
<input type="text" name="otherChoice" />
</td>
</tr>
</form>