<script>
function showhide()
{
document.all.c.style.display=document.all.myradio[0].checked?"block":"none";
}
</script>
<form action=next.jsp>
<input type=radio name=myradio value=a checked onclick=showhide()>show
<input type=radio name=myradio value=b onclick=showhide()>hide
<center>
<table id=c>
<tr><td><input id=mytext1></td></tr>
<tr><td><input id=mytext2></td></tr>
</table>
</center>