//change 5 to the total number of questions
var total=15
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]="Yes"
compliments[2]="Correct"
compliments[3]="Yes"
compliments[4]="Correct"
compliments[5]="Yes"
compliments[6]="Correct"
compliments[7]="Yes"
compliments[8]="Correct"
compliments[9]="Yes"
compliments[10]="Correct"
compliments[11]="Yes"
compliments[12]="Correct"
compliments[13]="Yes"
compliments[14]="Correct"
compliments[15]="Yes"


/*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]="What are the three types of work that rivers and glaciers can do?"
choice1[1]="Erosion, transportation and deposition"
choice1[2]="Fission, transportation and deposition"
choice1[3]="Erosion, aspiration and deposition"
choice1[4]="Erosion, transportation and desparation"

question[2]="In the upper course of a river you can expect to find"
choice2[1]="V-shaped valley, steep sides and small meanders"
choice2[2]="V-shaped valley, steep sides and large meanders"
choice2[3]="U-shaped valley, steep sides and small meanders"
choice2[4]="U-shaped valley, gentle sides and small meanders"

question[3]="In the middle course of the river the valley is usually"
choice3[1]="Narrower than the upper course"
choice3[2]="Wider than the lower course"
choice3[3]="Wider than the upper course"
choice3[4]="The same width as the upper and lower course"

question[4]="In the lower course the following features are usually found"
choice4[1]="A flood plain, ox-bow lakes large meanders and waterfalls"
choice4[2]="A flood plain, ox-bow lakes large meanders and levees"
choice4[3]="A gorge, ox-bow lakes large meanders and waterfalls"
choice4[4]="None of the above"

question[5]="Waterfalls are formed when"
choice5[1]="There has been a long period of rain"
choice5[2]="There has been a long period without rain"
choice5[3]="A river joins up with another river"
choice5[4]="A river crosses a layer of harder rock"

question[6]="At a meander on a river, the water flows"
choice6[1]="Fastest on the outside of the bend, where it erodes"
choice6[2]="Fastest on the outside of the bend, where it deposits"
choice6[3]="Fastest on the inside of the bend, where it erodes"
choice6[4]="Fastest on the inside of the bend, where it deposits"

question[7]="Which of the following is the correct order in the formation of an ox-bow lake"
choice7[1]="The river is starting to meander. Erosion is greater on the outside of the bend, deposition more on the inside - Large meanders have formed - The river cuts through the meander, leaving a straighter section and an ox-bow lake. "
choice7[2]=" The river cuts through the meander, leaving a straighter section and an ox-bow lake - Large meanders have formed - The river is starting to meander. Erosion is greater on the outside of the bend, deposition more on the inside "
choice7[3]="The river is starting to meander. Erosion is greater on the outside of the bend, deposition more on the inside - The river cuts through the meander, leaving a straighter section and an ox-bow lake - Large meanders have formed."
choice7[4]="None of the above"

question[8]="In the upper course of the river the valley is usually"
choice8[1]="Densely populated"
choice8[2]="Sparsely populated"
choice8[3]="Full of houses"
choice8[4]="Full of cars"

question[9]="In the upper course it is possible to find the following land uses"
choice9[1]="Deer stalking, hill walking, skiing and football pitches"
choice9[2]="Deer stalking, hill walking, skiing and resevoirs"
choice9[3]="Deer stalking, hill walking, skiing and cities"
choice9[4]="Deer stalking, hill walking, skiing and large scale industry"

question[10]="In the middle course, population density is"
choice10[1]="Less than the upper course"
choice10[2]="Greater than the lower course"
choice10[3]="The same as the upper and lower courses"
choice10[4]="Greater than the upper course"

question[11]="In the lower course it is possible to find the following land uses"
choice11[1]="Arable farms, large settlements and major industries"
choice11[2]="Arable farms, small settlements and major industries"
choice11[3]="Livestock farms, large settlements and major industries"
choice11[4]="All of the above"

question[12]="Two methods of ice erosion are"
choice12[1]="Plucking and abrasion"
choice12[2]="Clucking and abrasion"
choice12[3]="Trucking and derision"
choice12[4]="Sucking and shoping"

question[13]="In a U-shaped valley you may find the following features"
choice13[1]="Hanging valleys, waterfalls and gentle sides"
choice13[2]="Hanging valleys, waterfalls and steep sides"
choice13[3]="Singing valleys, waterfalls and gentle sides"
choice13[4]="Hanging valleys, natural arches and gentle sides"

question[14]="The ridge between two corries is known as an"
choice14[1]="Arest"
choice14[2]="Arete"
choice14[3]="Artist"
choice14[4]="Anglepoise"

question[15]="Which of the following is not formed by glacial deposition"
choice15[1]="Esker"
choice15[2]="Till"
choice15[3]="Outwash Plain"
choice15[4]="Pyramidal peak"



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



