manchurianCEO 0 Light Poster

Hi there,

I am trying to make a small javascript questionaire to include in a website for this non profit where I volunteer. It would basically ask people a few yes-no questions and I would like it that at the end, if all check yes, it would give something (congrats... you qualify etc. etc.) and if there is a "No", once the last question is checked it says something like "please consult..."

I'm stuck at the radio buttons, haven't programmed for a couple of years. Any help would be greatly appreciated.

Thank you!

ie.

Do I qualify?
<br>
<br>

(a) "Question"
<label><input type="radio" name="yesno" value="yes" checked="checked"> yes</label>
<label><input type="radio" name="yesno" value="no"> no</label>
<br>

(a) "Question 2"
<label><input type="radio" name="yesno" value="yes" checked="checked"> yes</label>
<label><input type="radio" name="yesno" value="no"> no</label>
.
.
.
.