/*
Use the following code as a template for creating a quiz with questions, answers, and scores 

var oQ; 
var oA; 
var oS; 

var oQuiz = new Quiz(); 

	oQuiz.SetQuestionNumberStyle();			// "1" or "A" or "a" or "." or ""
	oQuiz.SetQuestionNumberCssClass();			// CSS class name
	oQuiz.SetRequireAllGuesses();				// true or false 
	oQuiz.SetNeedAllGuessesCssClass();			// CSS class name
	oQuiz.SetNeedAllGuessesHTML();				// ex: "You must answer all questions." 
	oQuiz.SetScoreByPercentage();				// true or false (defaults to false)
	oQuiz.SetScoreCssClass("score");			// CSS class name
	
	// Repeat this indented block for each question 
	oQ = new Question(); 
		oQ.SetQuestionHTML();					// ex: "What is 2 + 2 ?" 
		oQ.SetQuestionCssClass();				// CSS class name 
		oQ.SetCorrectGuessHTML();				// ex: "Correct. Unless you are in Room 101 in the Ministry of Truth (with apologies to George Orwell)." 
		oQ.SetCorrectGuessCssClass();			// CSS class name 
		oQ.SetIncorrectGuessHTML();				// ex: "Incorrect. Practice your addition." 
		oQ.SetIncorrectGuessCssClass();			// CSS class name 
		oQ.SetQuestionType();					// "TF" or "MC" or "MS" :: TF = True/False; MC = Multiple Choice; MS = Multiple Selection 
		oQ.SetQuestionNumber();					// ex: 1 
		oQ.SetRequireAllOrNothing();			// true or false; determines whether Multiple Selection allows partial points for some but not all correct.
		oQ.SetAnswerNumberStyle();				// "1" or "A" or "a" or "." or ""
		oQ.SetAnswerNumberCssClass();			// CSS class name
		oQ.SetPossiblePoints();					// ex: 1
		
		// Repeat this indented block for each answer 
		oA = new Answer(); 
			oA.SetAnswerHTML();					// ex: "4" 
			oA.SetAnswerCssClass();				// CSS class name 
			oA.SetAnswerNumber();				// ex: 1 

			oA.SetPointsForCorrectGuess();		// defaults to 1; ex: 1 
			oA.SetCorrect();					// true or false (defaults to false)
			
			oQ.AddAnswer(oA);
			
		// Optional 
		oQ.RandomizeAnswers(); 
		
		oQuiz.AddQuestion(oQ); 
		
	//Repeat this indented block for each score range 
	oS = new Score(); 
		oS.SetScoreHTML();						// ex: "<b>Expert</b>: You really know your math!" 
		oS.SetMinScore();						// ex: 9 (for points) or 90 (for percent)
		
		oQuiz.AddScore(oS); 
		
	// Optional 
	oQuiz.RandomizeQuestions(); 
	
	// This line actually writes the functioning quiz to the document 
	oQuiz.Render();
*/

var oQ2; 
var oA2; 
var oS2; 

var oQuiz2 = new Quiz(); 
	oQuiz2.SetQuestionNumberStyle("1");
	oQuiz2.SetQuestionNumberCssClass("qnumber");
	oQuiz2.SetRequireAllGuesses(false);
	oQuiz2.SetNeedAllGuessesHTML("Please answer all questions first.");
	oQuiz2.SetNeedAllGuessesCssClass("requireall");
	oQuiz2.SetScoreByPercentage(true);
	oQuiz2.SetScoreCssClass("score");
	
	//---------------------------------------------------------------------------------------------------------------------------------
	// QUESTION 1
	//----------------------------------------------------------------------------------------------------------------------------------

// question 
	oQ2 = new Question(); 
		oQ2.SetQuestionHTML("The human foot has:<br>&nbsp;");
		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("Correct, 1 point.");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("Incorrect.<BR>The human foot has 18 muscles!");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(1);
		oQ2.SetAnswerNumberStyle("A");
		oQ2.SetAnswerNumberCssClass("anumber");
		
		// answers 
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("9 muscles");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oQ2.AddAnswer(oA2); 
			
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("36 muscles");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oQ2.AddAnswer(oA2); 
			
		
		// CORRECT ANSWER
		
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("18 muscles");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);

			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		
		
			
		// Optional 
		// oQ2.RandomizeAnswers();
			
		oQuiz2.AddQuestion(oQ2);
		
 	//---------------------------------------------------------------------------------------------------------------------------------
	// QUESTION 2
	//----------------------------------------------------------------------------------------------------------------------------------

	// question 
	oQ2 = new Question(); 
		oQ2.SetQuestionHTML("In the early 19th century, long distance walking became a popular pastime; this was called:<br>&nbsp");
		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("Correct, 1 point.<BR>Pedestrianism: famous avid walkers of this period include Sir Walter Scott, Henry David Thoreau, Samuel Taylor Coleridge, Thomas Carlyle, Robert Louis Stevenson and Jean Jacques Rousseau, all of whom claimed that walking great distances was good for the health.");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("Incorrect.<BR>Long distance walking was called Pedestrianism. Famous avid walkers of this period include Sir Walter Scott, Henry David Thoreau, Samuel Taylor Coleridge, Thomas Carlyle, Robert Louis Stevenson and Jean Jacques Rousseau, all of whom claimed that walking great distances was good for the health.");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(2);
		oQ2.SetAnswerNumberStyle("A");
		oQ2.SetAnswerNumberCssClass("anumber");
		
		// answers 
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("Walkabouts");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oQ2.AddAnswer(oA2); 
			
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("Footings");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oQ2.AddAnswer(oA2); 
			
		
		// CORRECT ANSWER
		
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("Pedestrianism");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);

			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		
		
			
		// Optional 
		// oQ2.RandomizeAnswers();
			
		oQuiz2.AddQuestion(oQ2);

	//---------------------------------------------------------------------------------------------------------------------------------
	// QUESTION 3
	//----------------------------------------------------------------------------------------------------------------------------------

// question 
	oQ2 = new Question(); 
		oQ2.SetQuestionHTML("Approximately what percentage of all the bones in the human body are found in the foot:<br>&nbsp");
		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("Correct, 1 point.");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("Incorrect.<BR>The right answer is 25%!");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(3);
		oQ2.SetAnswerNumberStyle("A");
		oQ2.SetAnswerNumberCssClass("anumber");
		
		// answers 
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("6%");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oQ2.AddAnswer(oA2); 
			
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("12%");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oQ2.AddAnswer(oA2); 
			
		
		// CORRECT ANSWER
		
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("25%");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);

			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		
		
			
		// Optional 
		// oQ2.RandomizeAnswers();
			
		oQuiz2.AddQuestion(oQ2);
		
 	//---------------------------------------------------------------------------------------------------------------------------------
	// QUESTION 4
	//----------------------------------------------------------------------------------------------------------------------------------

	// question 
	oQ2 = new Question(); 
		oQ2.SetQuestionHTML("The slide fastener (zipper) was invented as a waterproof closure for galoshes in:<br>&nbsp");
		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("Correct, 1 point.<BR>The slide fastener was invented in 1893, a full thirty-five years before they were commonly adapted for clothing closures");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("Incorrect.<BR>The right answer is 1893, a full thirty-five years before they were commonly adapted for clothing closures");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(4);
		oQ2.SetAnswerNumberStyle("A");
		oQ2.SetAnswerNumberCssClass("anumber");
		
		// answers 
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("1907");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oQ2.AddAnswer(oA2); 
			
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("1927");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oQ2.AddAnswer(oA2); 
			
		
		// CORRECT ANSWER
		
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("1893");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);

			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		
		
			
		// Optional 
		// oQ2.RandomizeAnswers();
			
		oQuiz2.AddQuestion(oQ2);

	//---------------------------------------------------------------------------------------------------------------------------------
	// QUESTION 5
	//----------------------------------------------------------------------------------------------------------------------------------

// question 
	oQ2 = new Question(); 
		oQ2.SetQuestionHTML("The most ever paid for a pair of used shoes was for:<br>&nbsp");
		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("Correct, 1 point.<BR>Of the 8 pairs of ruby slippers made for Judy Garland in &quot;The Wizard of Oz&quot;, the last pair at auction sold for US $666,000 on June 2 2000.");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("Incorrect.<BR>The right answer is Judy Garland's ruby slippers in &quot;The Wizard of Oz&quot; Of the 8 pairs of ruby slippers made for Judy Garland in &quot;The Wizard of Oz, the last pair at auction sold for US $666,000 on June 2 2000.");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(5);
		oQ2.SetAnswerNumberStyle("A");
		oQ2.SetAnswerNumberCssClass("anumber");
		
		// answers 
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("Princess Diana's wedding shoes");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oQ2.AddAnswer(oA2); 
			
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("John Travolta's shoes in &quot;Saturday Night Fever&quot;");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oQ2.AddAnswer(oA2); 
			
		
		// CORRECT ANSWER
		
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("Judy Garland's ruby slippers in &quot;The Wizard of Oz&quot;");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);

			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		
		
			
		// Optional 
		// oQ2.RandomizeAnswers();
			
		oQuiz2.AddQuestion(oQ2);
		
 	//---------------------------------------------------------------------------------------------------------------------------------
	// QUESTION 6
	//----------------------------------------------------------------------------------------------------------------------------------

	// question 
	oQ2 = new Question(); 
		oQ2.SetQuestionHTML("Which fictitious secret agent had a telephone built into his shoe:<br>&nbsp");
		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("Correct, 1 point.");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("Incorrect.<BR>The right answer is Maxwell Smart.");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(6);
		oQ2.SetAnswerNumberStyle("A");
		oQ2.SetAnswerNumberCssClass("anumber");
		
		// answers 
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("James Bond");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oQ2.AddAnswer(oA2); 
			
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("John Steed");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oQ2.AddAnswer(oA2); 
			
		
		// CORRECT ANSWER
		
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("Maxwell Smart");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);

			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		
		
			
		// Optional 
		// oQ2.RandomizeAnswers();
			
		oQuiz2.AddQuestion(oQ2);

	//---------------------------------------------------------------------------------------------------------------------------------
	// QUESTION 7
	//----------------------------------------------------------------------------------------------------------------------------------

// question 
	oQ2 = new Question(); 
		oQ2.SetQuestionHTML("Where are the boots worn by Neil Armstrong for his famous first walk on the moon in 1969 where he uttered the famous words &quot;One small step for man, one giant leap for mankind&quot; ? <br>&nbsp");
		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("Correct, 1 point.");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("Incorrect.<BR>Floating in space - they were jettisoned before returing to eath in case of contamination.");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(7);
		oQ2.SetAnswerNumberStyle("A");
		oQ2.SetAnswerNumberCssClass("anumber");
		
		// answers 
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("The National Air and Space Museum, Smithsonian Institution,&nbsp;&nbsp;<i>Washington DC</i>");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oQ2.AddAnswer(oA2); 
			
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("In Neil Armstrong's personal possession");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oQ2.AddAnswer(oA2); 
			
		
		// CORRECT ANSWER
		
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("In space");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);

			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		
		
			
		// Optional 
		// oQ2.RandomizeAnswers();
			
		oQuiz2.AddQuestion(oQ2);
		
 	//---------------------------------------------------------------------------------------------------------------------------------
	// QUESTION 8
	//----------------------------------------------------------------------------------------------------------------------------------

	// question 
	oQ2 = new Question(); 
		oQ2.SetQuestionHTML("In a famous nursery rhyme, who sailed off in a wooden shoe:<br>&nbsp");
		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("Correct, 1 point.");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("Incorrect.<BR>In the poem by Eugene Field, 1850-1895, it is <br>&quot;Wynken, Blynken and Nod one night<br>Sailed off in a wooden shoe <br>Sailed on a river of crystal light <br>Into a sea of dew.&quot;");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(8);
		oQ2.SetAnswerNumberStyle("A");
		oQ2.SetAnswerNumberCssClass("anumber");
		
		// answers 
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("The owl and the pussycat");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oQ2.AddAnswer(oA2); 
			
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("The fork and the spoon");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oQ2.AddAnswer(oA2); 
			
		
		// CORRECT ANSWER
		
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("Wynken, Blynken and Nod");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);

			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		
		
			
		// Optional 
		// oQ2.RandomizeAnswers();
			
		oQuiz2.AddQuestion(oQ2);

	//---------------------------------------------------------------------------------------------------------------------------------
	// QUESTION 9
	//----------------------------------------------------------------------------------------------------------------------------------

// question 
	oQ2 = new Question(); 
		oQ2.SetQuestionHTML("Which shoe style did Pat Boone popularize in the 1950's:<br>&nbsp");
		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("Correct, 1 point.");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("Incorrect.<BR>The right answer is White Bucks.");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(9);
		oQ2.SetAnswerNumberStyle("A");
		oQ2.SetAnswerNumberCssClass("anumber");
		
		// answers 
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("saddle shoes");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oQ2.AddAnswer(oA2); 
			
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("penny loafers");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oQ2.AddAnswer(oA2); 
			
		
		// CORRECT ANSWER
		
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("white bucks");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);

			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		
		
			
		// Optional 
		// oQ2.RandomizeAnswers();
			
		oQuiz2.AddQuestion(oQ2);
		
 	//---------------------------------------------------------------------------------------------------------------------------------
	// QUESTION 10
	//----------------------------------------------------------------------------------------------------------------------------------

	// question 
	oQ2 = new Question(); 
		oQ2.SetQuestionHTML("Approximately how many pairs of shoes did Imelda Marcos, wife of deposed Philippine president, have in her shoe room:<br>&nbsp");
		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("Correct, 1 point.");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("Incorrect.<BR>The right answer is 1500 pairs!");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("MC");
		oQ2.SetQuestionNumber(10);
		oQ2.SetAnswerNumberStyle("A");
		oQ2.SetAnswerNumberCssClass("anumber");
		
		// answers 
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("800 pairs");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oQ2.AddAnswer(oA2); 
			
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("6000 pairs");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oQ2.AddAnswer(oA2); 
			
		
		// CORRECT ANSWER
		
		oA2 = new Answer(); 
			oA2.SetAnswerHTML("1500 pairs");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(3);

			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		
		
			
		// Optional 
		//oQ2.RandomizeAnswers();
			
		oQuiz2.AddQuestion(oQ2);
	
	//Repeat this indented block for each score range 
	oS2 = new Score();
		oS2.SetScoreHTML("You scored 0 out of a possible 10 for a total of 0%.");
		oS2.SetMinScore(0);		// percentage

		oQuiz2.AddScore(oS2);		

	oS2 = new Score();
		oS2.SetScoreHTML("You scored 1 out of a possible 10 for a total of 10%.");
		oS2.SetMinScore(10);		// percentage

		oQuiz2.AddScore(oS2);		

	oS2 = new Score();
		oS2.SetScoreHTML("You scored 2 out of a possible 10 for a total of 20%.");
		oS2.SetMinScore(20);		// percentage

		oQuiz2.AddScore(oS2);		
		
		oS2 = new Score();
		oS2.SetScoreHTML("You scored 3 out of a possible 10 for a total of 30%.");
		oS2.SetMinScore(30);		// percentage

		oQuiz2.AddScore(oS2);		

	oS2 = new Score();
		oS2.SetScoreHTML("You scored 4 out of a possible 10 for a total of 40%.");
		oS2.SetMinScore(40);		// percentage

		oQuiz2.AddScore(oS2);		

	oS2 = new Score();
		oS2.SetScoreHTML("You scored 5 out of a possible 10 for a total of 50%.");
		oS2.SetMinScore(50);		// percentage

		oQuiz2.AddScore(oS2);		
		
		oS2 = new Score();
		oS2.SetScoreHTML("You scored 6 out of a possible 10 for a total of 60%.");
		oS2.SetMinScore(60);		// percentage

		oQuiz2.AddScore(oS2);		

	oS2 = new Score();
		oS2.SetScoreHTML("You scored 7 out of a possible 10 for a total of 70%.");
		oS2.SetMinScore(70);		// percentage

		oQuiz2.AddScore(oS2);		

	oS2 = new Score();
		oS2.SetScoreHTML("You scored 8 out of a possible 10 for a total of 80%.");
		oS2.SetMinScore(80);		// percentage

		oQuiz2.AddScore(oS2);		
		
		oS2 = new Score();
		oS2.SetScoreHTML("You scored 9 out of a possible 10 for a total of 90%.");
		oS2.SetMinScore(90);		// percentage

		oQuiz2.AddScore(oS2);		
		
		oS2 = new Score();
		oS2.SetScoreHTML("Congratulations! You scored 10 out of a possible 10 for a total of 100%.");
		oS2.SetMinScore(100);		// percentage

		oQuiz2.AddScore(oS2);		

// This is optional 
//oQuiz2.RandomizeQuestions();		

