NN4 does not accept disabled for form elements, but IE does
So based on some condition - just loop thru the radio button group setting the disabled attribute to true, based on some codition, like the text box has data entered.
You could cheat by saying
if(document.formname.text.value != void){
//continue with radio setting
}
b2 - benbiddington@surf4nix.com