that's what I thought, but I asked in another forum and here is the response I got there pertaining to a javascript:
Code:
document.your_form_name.your_submit_button.disabled =true;
document.your_form_name.your_cancel_button.disabled = false;if
(document.your_form_name.radio_button.options[0].selected){
document.your_form_name.your_submit_button.disabled = false;
document.your_form_name.your_cancel_button.disabled = true; }
Adjust accordingly.
As far as the redirection goes, you should use server side programming to take care of that. The exact code would depend on the language used.
So then how would I handle the redirection?
~BigD