/* the following is the HTML to use in the information page and the summary page */
infoPage = "<p><b>Do you need a refresher?<br><br>Test your skills! <br><br>Try the Grammar Plus quiz!<b></p>";
summaryPassed = "<p>You have passed the test! Your score is %%score.<br /><br />Grammar Plus classes are informative, easy-to-understand, and fun!<br /><br /><a href='../contact-new.html'>Contact</a> Grammar Plus to schedule a 3-hour mini-class, a 1-day<br /> grammar refresher, or a 2-day grammar/business writing class in<br /> your workplace! Or call for a free preview!</p>";
summaryFailed = "<p>Your current score is %%score.<br />Please review the test questions and provide the correct answers.<br /><br />Grammar Plus classes are informative, easy-to-understand, and fun!<br /><br /><a href='../contact-new.html'>Contact</a> Grammar Plus to schedule a 3-hour mini-class, a 1-day<br> grammar refresher, or a 2-day grammar/business writing class in<br /> your workplace! Or call for a free preview!</p>";
timeoutAlert = "The time limit for the test has been exceeded. The test is now complete.";

/* these global variables define how the test is delivered */
mustAnswer = false;
mustAnswerAll = true;
randomizeTest = false;
randomizeChoices = false;
numberAttempts = 999;
passingScore = 70;
questionsToShow = 0;
timeLimit = 0;

/* message strings */

/* page number display */
msgPageNum = "You have answered %%complete of %%total questions";

/* too many attempts for this question */
msgTooMany = '<p class=warning>You have reached the maximum number of attempts for this question.</p>';

/* time limit exceeded */
msgTimeout = "<p class=warning>The time limit for the test has been exceeded. The test is now complete.</p>";

/* mustAnswerAll is true and not all questions are answered, tell the learner that he must come back to complete the test */
msgMustAnswerAll = "You have answered %%complete of %%total questions. The test will not be complete until you answer all %%total questions."

/* mustAnswerAll is false and not all questions are answered, ask learner if he is done with the test */
msgIncomplete = "You have answered %%complete of %%total questions. Click OK if you would like to answer the additional questions at a later time. Click Cancel if you do not wish to return (your score will be reported immediately)."


/* true false strings */
msgTrue = "True";
msgFalse = "False";

/* time display string */
msgTime = "Time Remaining: ";

/* user must supply an answer */
msgAnswerTF  = "Please select True or False";
msgAnswerMC  = "Please select an answer";
msgAnswerMCM = "Please select the correct answers";
msgAnswerFI  = "Please provide an answer";
msgAnswerM   = "Please provide a match for each item";

/* string for check answers button */
msgCheck = 'Check Answer';

/* directions for a question */
msgDirectionsTF   = '<P><STRONG>Select True or False: </STRONG>';
msgDirectionsMC   = '<P><STRONG>Select one of the following:</STRONG></P>';
msgDirectionsMCM  = '<P><STRONG>Select three of the following:</STRONG></P>';
msgDirectionsFI   = '<p><STRONG>Type the missing word in the following sentence.</STRONG></p>';
msgDirectionsFIM  = '<p><STRONG>Type the missing words in the following sentence.</STRONG></p>';
