Need help with a flash quiz

Hi everybody:
I’m a scripting newbie stuck with this flash quiz. The sequence goes somewhat like this. A question has a true or false answer; if they choose true, it goes to q2; if they choose false, it goes to q3 …etc. At the end, depending on the route, it lead to different results.

Here’s how I started…

qcheck = 0;
yes = 0;
no = 0;

function startQuiz(){
no = 0;
if (qcheck == 0) {
question.text = “Find Out your body type.”;
placeholder.loadMovie("");
}else {
if (qcheck == 1) {
question.text = “Do you immediately sit down after you ate?”;
placeholder.loadMovie(“mc1”);
if (yes == 1){
qcheck=
}else if (…){

}
}

God bless anyone who can help me.