io ho risolto così e funziona sia con IE che FF:
codice:
<?php
<script>
function vedinonvedi(id){
if (document.getElementById){
if(document.getElementById(id).style.display == 'none'){
document.getElementById(id).style.display = 'block';
} else {
document.getElementById(id).style.display = 'none';
}
}
}
</script>
<input type=\"checkbox\" name=\"checkbox\" value=\"checkbox\" onclick=\"vedinonvedi('agonismo_basket'); return true;\"> basket
?>
<div id=\"agonismo_basket\" style=\"display: none\">
<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
<tr>
<td colspan=\"4\" nowrap class=\"nota\">Pratichi questo sport a livello agonistico?</td>
</tr>
<tr>
<td width=\"10\"><input name=\"radiobutton\" type=\"radio\" value=\"radiobutton\"></td>
<td class=\"stampatello\">si</td>
<td width=\"10\"><input name=\"radiobutton\" type=\"radio\" value=\"radiobutton\"></td>
<td class=\"stampatello\">no</td>
</tr>
</table>
</div>