Basically, here's how you'd have to write a client-side handler for a RadioButtonList. This one finds the checked item, but should get you started.
<script language=JavaScript>
<!--
function isChecked(listControlId)
{
var tableBody = document.getElementById(listControlId).childNodes[0];
for (var i=0;i<tableBody.childNodes.length; i++)
{
var currentTd = tableBody.childNodes[i].childNodes[0];
var listControl = currentTd.childNodes[0];
if ( listControl.checked )
alert('Checked: ' + currentTd.childNodes[1].innerHTML);
}
}
// -->
</script>
NC...