Another way is shown oin the third post of my thread:
An array of arrays of of radio buttons
I gave all three checkboxes the same name. Then it was simple to do:
for(i=1;i<=3;i++) {
tmp1 = document.form1.status[i].checked;
alert(tmp1);
if(tmp1){
..........................
}
else{
..........................
};
};
It seems to be the only way to do it with radio buttons.
MidiMagic
Nearly a Senior Poster
3,319 posts since Jan 2007
Reputation Points: 730
Solved Threads: 182