This should do it:
HTML Code:
<html>
<head>
<script type="text/javascript">
onload=function(){
document.getElementById('accept').checked=false;
}
</script>
</head>
<body>
<table border="1">
<tr>
<td width="100" height="25"><input type="radio" id="accept" name="page" onclick="this.ticked=this.ticked? 0 : 1;
document.getElementById('dropdown1').style.display =this.ticked? 'block' : 'none';this.checked=this.ticked;">Option 1</td>
<td width="100" height="25"><input type="radio" id="accept" name="page" onclick="this.ticked=this.ticked? 0 : 1;
document.getElementById('dropdown2').style.display =this.ticked? 'block' : 'none';this.checked=this.ticked;">Option 2</td>
<td width="100" height="25"><input type="radio" id="accept" name="page" onclick="this.ticked=this.ticked? 0 : 1;
document.getElementById('dropdown3').style.display =this.ticked? 'block' : 'none';this.checked=this.ticked;">Option 3</td>
</tr>
<tr>
<td width="300" height="25" colspan="3"><div id="dropdown1" style="display:none">Display Content 1</div><div id="dropdown2"
style="display:none">Display Content 2</div><div id="dropdown3" style="display:none">Display Content 3</div></td>
</tr>
</table>
</body>
</html>
Bookmarks