//change 23 to the total number of questions
var total=23
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]="Excellent!"
compliments[1]="Wow, you're really rocking!"
compliments[2]="You must have studied hard. Good job!"
compliments[3]="Right on."
compliments[4]="Correct!"
compliments[5]="Great Job!"
compliments[6]="Good work!"


/*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://javascriptkit.com/script/script2/comboquiz.htm for more info
*/
/* Tips on how to make changes to the quiz */
/* - Change the number at the very top of quiz to reflect the
     number of questions you are using.
   - Change the question number to the next number and make
     sure the choice number is changed to match the question number.
   - Add the solution and make sure it matches the correct
     question and answer. This is how to deal with apostrophes,
     eg: world\'s  */

question[1]="What does the command Cha riyot mean?"
choice1[1]="Attention"
choice1[2]="Bow"
choice1[3]="Run"
choice1[4]="Stop"

question[2]="In what country did taekwondo originate?"
choice2[1]="China"
choice2[2]="Japan"
choice2[3]="Korea"
choice2[4]="Phillipines"

question[3]="What does taekwondo mean?"
choice3[1]="Fighting"
choice3[2]="The art"
choice3[3]="The legend of Zorro"
choice3[4]="The art of kicking and punching"

question[4]="Which is NOT a tenet of taekwondo?"
choice4[1]="Courtesy"
choice4[2]="Indomitable Spirit"
choice4[3]="Loyalty"
choice4[4]="Self-Control"

question[5]="Who is the founder of taekwondo?"
choice5[1]="General Choi-Hong Hi - 9th degree Grandmaster"
choice5[2]="General Holy Chow - Grandmaster"
choice5[3]="Master Bruce Lee"
choice5[4]="Master Jackie Chan"

question[6]="What is the Korean terminology for Relax?"
choice6[1]="Chagi"
choice6[2]="Jumbi"
choice6[3]="Makgi"
choice6[4]="Swiyo"

question[7]="What is the Korean terminology for Commence?"
choice7[1]="Do Chi"
choice7[2]="Jumbi"
choice7[3]="Parro"
choice7[4]="Sijak"

question[8]="In what year did taekwondo first appear in the Olympics?"
choice8[1]="1984 (Los Angeles)"
choice8[2]="1988 (Seoul)"
choice8[3]="1992 (Barcelona)"
choice8[4]="1996 (Atlanta)"

question[9]="Who founded the World Taekwondo Federation?"
choice9[1]="General Choi Hong Hi"
choice9[2]="General Kano Jigoro"
choice9[3]="Grandmaster Jung Tea Yih"
choice9[4]="Master Albert Smythe"

question[10]="What do you do before entering or leaving the Dojang?"
choice10[1]="Bow"
choice10[2]="Nothing"
choice10[3]="Pray"
choice10[4]="Ready Stance"

question[11]="What is a taekwondo gym called?"
choice11[1]="A Club"
choice11[2]="A Dojang"
choice11[3]="A Dojo"
choice11[4]="Workout Gym"

question[12]="What is the beginning rank in taekwondo?"
choice12[1]="Green"
choice12[2]="Orange"
choice12[3]="White"
choice12[4]="Yellow"

question[13]="What is the name of the taekwondo uniform?"
choice13[1]="Dobok"
choice13[2]="Dobong"
choice13[3]="Go"
choice13[4]="Yi"

question[14]="What does the number SET mean in English?"
choice14[1]="Four"
choice14[2]="One"
choice14[3]="Three"
choice14[4]="Two"

question[15]="What is the Korean name for pattern?"
choice15[1]="Kiai"
choice15[2]="Sijak"
choice15[3]="Taeguk"
choice15[4]="Tenets"

question[16]="What does Kwon in taekwondo mean?"
choice16[1]="Kick"
choice16[2]="Master"
choice16[3]="Punch"
choice16[4]="The art of"

question[17]="How do you say Master Instructor in Korean?"
choice17[1]="Dan"
choice17[2]="Sa Bom Nim"
choice17[3]="Sa Sa Nim"
choice17[4]="Yoo Dan Ja"

question[18]="Which Olympic Games did Master Smythe participate in?"
choice18[1]="1976 (Montreal)"
choice18[2]="1984 (Los Angeles)"
choice18[3]="1988 (Seoul)"
choice18[4]="1992 (Barcelona)"

question[19]="What does Poomse mean?"
choice19[1]="Begin"
choice19[2]="Block"
choice19[3]="Degree"
choice19[4]="Form"

question[20]="On what continent is South Korea located?"
choice20[1]="Africa"
choice20[2]="Antarctica"
choice20[3]="Armenia"
choice20[4]="Asia"

question[21]="What is the capital of South Korea?"
choice21[1]="Inchon"
choice21[2]="Pusan"
choice21[3]="Seoul"
choice21[4]="Taegu"

question[22]="What does WTF mean?"
choice22[1]="Western Taekwondo Foundation"
choice22[2]="World Taekwondo Federation"
choice22[3]="World Taekwondo Foundation"
choice22[4]="World Trade Federation"

question[23]="What does ITF mean?"
choice23[1]="Internal Taekwondo Foundation"
choice23[2]="International Taekwondo Federation"
choice23[3]="International Taekwondo Foundation"
choice23[4]="International Tennis Federation"


solution[1]="a"
solution[2]="c"
solution[3]="d"
solution[4]="c"
solution[5]="a"
solution[6]="d"
solution[7]="d"
solution[8]="b"
solution[9]="a"
solution[10]="a"
solution[11]="b"
solution[12]="c"
solution[13]="a"
solution[14]="c"
solution[15]="c"
solution[16]="a"
solution[17]="b"
solution[18]="c"
solution[19]="d"
solution[20]="d"
solution[21]="c"
solution[22]="b"
solution[23]="b"