//change 5 to the total number of questions
var total=10
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]="The eBook is ____?"
choice1[1]="the fifth book in the series by that mystery writer."
choice1[2]="an electronic document that is downloaded off the internet."
choice1[3]="created by Project Guttenberg."
choice1[4]="not available on today's computer."

question[2]="Printed books can  --?"
choice2[1]="be read anywhere there is sufficient light."
choice2[2]="have notes written in the margins."
choice2[3]="easily damaged by the cold."
choice2[4]="a and b above."

question[3]="Project Guttenberg was started by  --?"
choice3[1]="a gift worth a $100 Million."
choice3[2]="a german worker who wanted to quit his job copying old books."
choice3[3]="a college professor that was told to publish or perish."
choice3[4]="a robotic printing press."

question[4]="The book on Little Bo Peep is cited as an example of --?"
choice4[1]="a book helps a child learn to read and shows the definition of the word as the child reads."
choice4[2]="a book that is often translated into a foreign language."
choice4[3]="a book that is not an eBook."
choice4[4]="a children's book."

question[5]="A disadvantage of an electronic document is that --?"
choice5[1]="is too expensive to produce."
choice5[2]="can not be cited on your resume."
choice5[3]="is that it can only be read with a electronic stone."
choice5[4]="needs a source of power to be read."

question[6]="Why is the electronic document useful to the blind or visually impaired?"
choice6[1]="because with a little care document design both the sighted and the visually impaired can read it with a computer."
choice6[2]="neither the printed book or the electronic book are useful because it needs to be read to the blind."
choice6[3]="because the computer can be modified to either change the size of the font, use a text to speech program, or print braille."
choice6[4]="both a and c."

question[7]="Distance learning is designed to provide what?"
choice7[1]="the distances between cities and is useful in learning geography."
choice7[2]="civil engineering student with electronic aids to surveying."
choice7[3]="education or training to a widely separated population of students."
choice7[4]="soldiers with a need to learn how to march long distances."

question[8]="The library will soon be buying less what --?"
choice8[1]="New books."
choice8[2]="computers and instead use the encyclopedia Brittanica."
choice8[3]="printed reference materials and buy reference information from e-Services."
choice8[4]="newspapers and magazines."

question[9]="Printed books are seen as a --?"
choice9[1]="an annoying and heavy object to carry in a book bag."
choice9[2]="sensual experience -- the smell of the book, the feel, and look all add to the readers enjoyment."
choice9[3]="something whose time has come and gone."
choice9[4]="something to be ignored after the semester ends."

question[10]="Electronic slates are --?"
choice10[1]="Can hold hundreds of books."
choice10[2]="a relative bargin costing about $80."
choice10[3]="use batteries, can download ebooks from the web, holds about 4000 pages."
choice10[4]="will wipe the slate clean when the boss is coming."



solution[1]="b"
solution[2]="d"
solution[3]="a"
solution[4]="a"
solution[5]="d"
solution[6]="d"
solution[7]="c"
solution[8]="c"
solution[9]="b"
solution[10]="c"




