function fFetRadowButtonList()
{
var vRadioButtonListOptions;
vRadioButtonListOptions = document.getElementById("RadioButtonList1").getElementsByTagName('input');
alert("Length = " + vRadioButtonListOptions.length);
alert("Value = " + vRadioButtonListOptions[1].value);
for(i = 0 ;i < vRadioButtonListOptions.length; i++)
{
if(vRadioButtonListOptions[i].checked)
{
alert(vRadioButtonListOptions[i].value);
}
}
}
{
var vRadioButtonListOptions;
vRadioButtonListOptions = document.getElementById("RadioButtonList1").getElementsByTagName('input');
alert("Length = " + vRadioButtonListOptions.length);
alert("Value = " + vRadioButtonListOptions[1].value);
for(i = 0 ;i < vRadioButtonListOptions.length; i++)
{
if(vRadioButtonListOptions[i].checked)
{
alert(vRadioButtonListOptions[i].value);
}
}
}