//change 5 to the total number of questions
var total=5
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://wsabstract.com/script/script2/comboquiz.htm for more info
*/

question[1]="What is the difference between a Client Side and a Server Side Image Map?"
choice1[1]="No difference. Simply two different ways in referring to the same thing."
choice1[2]="A Client Side image map has all the data it needs to determine the areas and the actions to take in the web page."
choice1[3]="A Server Side image map is faster and easier to create."
choice1[4]="Server Side image repress an improvement over the older and slower CS image map approach."

question[2]="Which came first CS image maps or SS image maps?"
choice2[1]="Image maps were originally SS."
choice2[2]="CS was developed first due to the lack of web servers in the first web sites."
choice2[3]="CS were developed ealier than SS and require a browser that can support them."
choice2[4]="THey were both defined in the HTML 2.0 standard and were adopted by Netscape immediately."

question[3]="What is the difference betwwen shareware and freeware?"
choice3[1]="Shareware is available over the internet and freeware is not."
choice3[2]="Freeware is only worth what you pay for it"
choice3[3]="Shareware is software that like freeware is availale over the internet but shareware has an implied concept of a its purchase after a trial period"
choice3[4]="Shareware requires the user to pay for it before trying it."

question[4]="What is the function of a image map editor?"
choice4[1]="Lets the user type in remarks about the image."
choice4[2]="Checks the text in the image for spelling and grammar."
choice4[3]="Allows the user a tool to define the coordinates for the map areas that determine a mouse event allow the author to add links, alternate text, and JavaScript functions that create an interaction when the viewers mouse encountters an area."
choice4[4]="Allows the user to modify the image."

question[5]="What is a good application for an image map?"
choice5[1]="Any list of choices."
choice5[2]="An application with with only a few links."
choice5[3]="An application where the data is of a two dimensional nature like finding the features of a map, chart, engineering drawing,etc."
choice5[4]="An application that requires the user to give an answer. "

solution[1]="b"
solution[2]="a"
solution[3]="c"
solution[4]="c"
solution[5]="c"


