Can Somebody Hook Me Up!

This is the code i got and you can see the attached output, but i still got a problem, like after the user has selected one of the radioButtons and clicked submit button i want all the components even the submit button to be disabled so that he won’t click around until he gets the rite answer.

How can i add this fucntionality to ma code below:

[COLOR=#000000][FONT=Courier New][COLOR=#ff8000]//save a reference to the timeline that contains the form[/COLOR][/FONT]
[FONT=Courier New][COLOR=#ff8000]//myForm = this; [/COLOR][/FONT]
[FONT=Courier New][COLOR=#ff8000]//create a listener object for the submit button[/COLOR][/FONT]
[FONT=Courier New][COLOR=#0000bb]submitButtonListener [/COLOR][COLOR=#007700]= new [/COLOR][COLOR=#0000bb]Object[/COLOR][/FONT][COLOR=#007700]FONT=Courier New;[/FONT][/COLOR]

[FONT=Courier New][COLOR=#ff8000]//submit button listener, click handler method[/COLOR][/FONT]
[FONT=Courier New][COLOR=#0000bb]submitButtonListener[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000bb]click [/COLOR][/FONT][COLOR=#007700][FONT=Courier New]= function ()[/FONT][/COLOR]
[FONT=Courier New][COLOR=#007700]{[/COLOR][/FONT]
[FONT=Courier New][COLOR=#ff8000]//find the selected radio button in the group[/COLOR][/FONT]
[FONT=Courier New][COLOR=#007700]var [/COLOR][COLOR=#0000bb]selectedRadioButton [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000bb]myAdjective[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000bb]selection[/COLOR][/FONT][COLOR=#007700][FONT=Courier New];[/FONT][/COLOR]

[FONT=Courier New][COLOR=#ff8000]//store the label of the selected radio button[/COLOR][/FONT]
[FONT=Courier New][COLOR=#007700]var [/COLOR][COLOR=#0000bb]selectedRadioButtonLabel [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000bb]selectedRadioButton[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000bb]label[/COLOR][/FONT][FONT=Courier New][COLOR=#007700];[/COLOR][/FONT]

[FONT=Courier New][COLOR=#007700]if([/COLOR][COLOR=#0000bb]selectedRadioButtonLabel [/COLOR][COLOR=#007700]== [/COLOR][COLOR=#dd0000]" Gall Bladder "[/COLOR][/FONT][COLOR=#007700][FONT=Courier New]){ [/FONT][/COLOR]

[FONT=Courier New][COLOR=#ff8000]//compose and display the message[/COLOR][/FONT]
[FONT=Courier New][COLOR=#0000bb]statusMessage[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000bb]text [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#dd0000]“Congratulations”[/COLOR][/FONT][FONT=Courier New][COLOR=#007700];[/COLOR][/FONT]
[FONT=Courier New][COLOR=#007700]}else{[/COLOR][/FONT]
[FONT=Courier New][COLOR=#0000bb]statusMessage[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000bb]text [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#dd0000]“Sorry Procede to the next component”[/COLOR][/FONT][COLOR=#007700][FONT=Courier New];[/FONT][/COLOR]
[FONT=Courier New][COLOR=#007700]} [/COLOR][/FONT]
[FONT=Courier New][COLOR=#007700]}[/COLOR][/FONT]
[FONT=Courier New][COLOR=#ff8000]//make the submit button listener listen for click events[/COLOR][/FONT]
[FONT=Courier New][COLOR=#0000bb]submitButton[/COLOR][COLOR=#007700].[/COLOR][COLOR=#0000bb]addEventListener[/COLOR][COLOR=#007700]([/COLOR][COLOR=#dd0000]“click”[/COLOR][COLOR=#007700], [/COLOR][COLOR=#0000bb]submitButtonListener[/COLOR][/FONT][COLOR=#007700][FONT=Courier New]); [/FONT][/COLOR]

[/COLOR]