//change 10 to the total number of questions
var total=20
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]="Hai, Excellent!"
compliments[1]="Hai, Wow, you're really rocking!"
compliments[2]="Hai, You must have studied hard. Good job!"
compliments[3]="Hai, Are you my Sensei?!."
compliments[4]="Hai, Correct!"
compliments[5]="Hai, Great Job!"
compliments[6]="Hai, 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
*/

question[1]="Who is The Founder of Wado Ryu Karate?"
choice1[1]="Gichin Funakoshi"
choice1[2]="Hinori Ohtsuka"
choice1[3]="Tatsuo Suzuki"
choice1[4]="Jiro Ohtsuka"

question[2]="What year was Wado Ryu Founded?"
choice2[1]="1922"
choice2[2]="1930"
choice2[3]="1934"
choice2[4]="1928"

question[3]="What does Su stand for as in Su Ha Ri ?"
choice3[1]="A Student is allowed to develop his own techniques"
choice3[2]="A Student must copy techniques as shown by his Sensei"
choice3[3]="A Student must complete all techniques as a reaction and without thinking"
choice3[4]="A Student must never invent new techniques"

question[4]="What does 'Karate Ni Sentenashi' mean?"
choice4[1]="Polite manners are required in the Dojo"
choice4[2]="A Karateka must obey his Sensei at all times"
choice4[3]="Empty hand"
choice4[4]="A karateka must never attack first"

question[5]="Kikioji is the Samurai phrase for ...?"
choice5[1]="Poor Training"
choice5[2]="Being Afraid of Battle"
choice5[3]="Being afraid of an Enemies reputation"
choice5[4]="Swordmanship"

question[6]="Inen is one of the Six Principles of Kata - Which one is it?"
choice6[1]="Kata must be performed with spirit"
choice6[2]="Kata must be performed with correct breathing"
choice6[3]="Kata must be performed with correct balance"
choice6[4]="Kata must be performed with feeling and purpose"

question[7]="Hanmi means what?"
choice7[1]="Left"
choice7[2]="Fighting stance"
choice7[3]="Front stance"
choice7[4]="Half forward position"

question[8]="Tai Sabaki means what?"
choice8[1]="Entering an opponents fighting area"
choice8[2]="Returning wave"
choice8[3]="Body evasion"
choice8[4]="Pre-emptive attack"

question[9]="If Mahanmi is Side facing what is Mashomen?"
choice9[1]="Front facing"
choice9[2]="Left Facing"
choice9[3]="Right Facing"
choice9[4]="Rear Facing"

question[10]="Stomach in Japanese is what?"
choice10[1]="Kinteki"
choice10[2]="Shiri"
choice10[3]="Sebone"
choice10[4]="Hara"

question[11]="Which Kata literally means to storm the fortress?"
choice11[1]="Chinto"
choice11[2]="Sieshan"
choice11[3]="Bassai"
choice11[4]="Pinan Godan"

question[12]="Ohtusuka Sensei said of this kata - if it can being fully grasped, it should be the end. All other kata are stepping stones to this"
choice12[1]="Chinto"
choice12[2]="Sieshan"
choice12[3]="Bassai"
choice12[4]="Naihanchi"

question[13]="Which Kata literally means Crane on a Rock?"
choice13[1]="Chinto"
choice13[2]="Sieshan"
choice13[3]="Bassai"
choice13[4]="Pinan Godan"

question[14]="Explain the Term Shikaku?"
choice14[1]="Centre Line of Attack"
choice14[2]="Deflecting An Attack"
choice14[3]="Awareness"
choice14[4]="A Blind Spot from where it is difficult for you opponent to attack"

question[15]="Explain the Term Kakete?"
choice15[1]="Waiting for an opponent to strike first"
choice15[2]="A preemptive attack"
choice15[3]="Body Shifting"
choice15[4]="Centre line of attack"

question[16]="One of the Principles of Wado Karate is Mudana no Iroki, What is it?"
choice16[1]="No unnecessary force"
choice16[2]="No unnecessary movement"
choice16[3]="No unnecessary technique"
choice16[4]="No first strike"

question[17]="What is Eleven in Japanese?"
choice17[1]="Rei"
choice17[2]="Ju ichi"
choice17[3]="Ni ju"
choice17[4]="San ju"

question[18]="What is Zero in Japanese?"
choice18[1]="Rei"
choice18[2]="Ju ichi"
choice18[3]="Hyaku"
choice18[4]="San ju"

question[19]="What is Zanshin in English?"
choice19[1]="Open Mind"
choice19[2]="Open Hand"
choice19[3]="Awareness"
choice19[4]="Speed"

question[20]="What is Shizentai?"
choice20[1]="Horse Stance"
choice20[2]="Forward Stance"
choice20[3]="Cat Stance"
choice20[4]="Natural Stance"


solution[1]="b"
solution[2]="c"
solution[3]="b"
solution[4]="d"
solution[5]="c"
solution[6]="a"
solution[7]="d"
solution[8]="c"
solution[9]="a"
solution[10]="d"
solution[11]="c"
solution[12]="a"
solution[13]="a"
solution[14]="d"
solution[15]="b"
solution[16]="b"
solution[17]="b"
solution[18]="a"
solution[19]="c"
solution[20]="d"

