Here are the instructions for making a new quiz as an HTML file.

-- Make a copy of "example-quiz.html" and make sure it is in the same 
   directory as nil.gif, wbu.gif, rbu.gif, and quizcode.js.

-- Edit the newly created file as text:

   - Call H with the title of the quiz as a string argument. 

   - For each question, 
       - call Q with the question as a string argument;
       - for each answer, call A(b,ans,comment) where 
           - b is Y or N according to whether the answer is correct,
           - ans is the answer as a string;
           - comment is an optional string to show after the answer is 
             chosen (a hint when incorrect or explanation when correct).

-- Try the file in a browser.  Correct answer choices should show up as green
   check marks.  Incorrect answer choices should show up as red crosses.



