//change 5 to the total number of questions
var total=12
var question=new Array()
for (i=1;i<=total+1;i++){
temp="choice"+i+"=new Array()"
eval(temp)
}
var solution=new Array()

/*Below lists the phrases that will be randomly displayed if the user correctly answers the question. You may extend or shorten this list as desired*/
var compliments=new Array()
compliments[0]="Correct"
compliments[1]="Correct"
compliments[2]="Correct"
compliments[3]="Correct"
compliments[4]="Correct"
compliments[5]="Correct"
compliments[6]="Correct"


/*Below lists the questions, its choices, and finally, the solution to each question. Folow the exact format below when editing the questions. You may have as many questions as needed. Check doc at http://wsabstract.com/script/script2/comboquiz.htm for more info
*/

question[1]="Training needs a lot of patience and hard work, but it's worth the effort."
choice1[1]="Ann"
choice1[2]="Spock and/or Dracs"
choice1[3]="All 3"

question[2]="I'm very particular about my food."
choice2[1]="Ann"
choice2[2]="Spock and/or Dracs"
choice2[3]="All 3"

question[3]="Going for a walk every day is a necessity in my life."
choice3[1]="Ann"
choice3[2]="Spock and/or Dracs"
choice3[3]="All 3"

question[4]="I can be very stubborn."
choice4[1]="Ann"
choice4[2]="Spock and/or Dracs"
choice4[3]="All 3"

question[5]="I can sleep through anything."
choice5[1]="Ann"
choice5[2]="Spock and/or Dracs"
choice5[3]="All 3"

question[6]="It's good gravy that makes a roast dinner so enjoyable."
choice6[1]="Ann"
choice6[2]="Spock and/or Dracs"
choice6[3]="All 3"

question[7]="I could sit and have my back tickled all day."
choice7[1]="Ann"
choice7[2]="Spock and/or Dracs"
choice7[3]="All 3"

question[8]="Others take up far too much of the duvet."
choice8[1]="Ann"
choice8[2]="Spock and/or Dracs"
choice8[3]="All 3"

question[9]="I always give visitors a warm welcome."
choice9[1]="Ann"
choice9[2]="Spock and/or Dracs"
choice9[3]="All 3"

question[10]="If something's not right, I feel it's my duty to complain."
choice10[1]="Ann"
choice10[2]="Spock and/or Dracs"
choice10[3]="All 3"

question[11]="In the winter, I love stretching out on the settee in front of a warm fire."
choice11[1]="Ann"
choice11[2]="Spock and/or Dracs"
choice11[3]="All 3"

question[12]="A life without curiosity would be very boring."
choice12[1]="Ann"
choice12[2]="Spock and/or Dracs"
choice12[3]="All 3"

solution[1]="b"
solution[2]="a"
solution[3]="b"
solution[4]="c"
solution[5]="a"
solution[6]="c"
solution[7]="a"
solution[8]="b"
solution[9]="c"
solution[10]="b"
solution[11]="a"
solution[12]="c"
