

var oQ2; 
var oA2; 
var oS2; 

var oQuiz2 = new Quiz(); 

	oQuiz2.SetQuestionNumberStyle("1");
	oQuiz2.SetQuestionNumberCssClass("qnumber");
	oQuiz2.SetRequireAllGuesses(true);
	oQuiz2.SetNeedAllGuessesHTML("Please answer all the questions first.");
	oQuiz2.SetNeedAllGuessesCssClass("requireall");
	oQuiz2.SetScoreByPercentage(false);
	oQuiz2.SetScoreCssClass("score");



	// Repeat this indented block for each question 

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" People who look and feel healthy can have HIV and transmit it to a partner without knowing it?");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("True: It is possible to have HIV (the virus that can cause AIDS), have no symptoms and not know it. Even if you have the virus with no symptoms it is possible to spread it to others through unprotected vaginal, anal, or oral intercourse. It can also be spread through sharing of needles, because blood can be exchanged between people.");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("False: It is possible to have HIV (the virus that can cause AIDS), have no symptoms and not know it. Even if you have the virus with no symptoms it is possible to spread it to others through unprotected vaginal, anal, or oral intercourse. It can also be spread through sharing of needles, because blood can be exchanged between people.");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("TF");
		oQ2.SetQuestionNumber(1);

		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);

		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("True");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("False");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);		
			
		// Optional 

		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" Using two condoms at the same time - double bagging - is a good way of doubling your protection.");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("True: Using two condoms can actually cause friction between the condoms, and condom breakage.");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("False: Using two condoms can actually cause friction between the condoms, and condom breakage.");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("TF");
		oQ2.SetQuestionNumber(2);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);


		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("True");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		
		

		oA2 = new Answer();

			oA2.SetAnswerHTML("False");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		


		// Optional 

		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" A person can have an STI and not know it.");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("True: Many STIs have no symptoms, especially at the beginning. It's important not to assume...get tested for STIs if you are sexually active.");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("False: Many STIs have no symptoms, especially at the beginning. It's important not to assume...get tested for STIs if you are sexually active.");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("TF");
		oQ2.SetQuestionNumber(3);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);


		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("True");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		

		
		oA2 = new Answer();

			oA2.SetAnswerHTML("False");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);	


		// Optional 

		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" A female condom can be worn up to 8 hours prior to having intercourse.");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("True: This is a bonus...it gives a woman more control over birth control and safer sex protection because she does not have to ask her partner to wear a condom. Because the female condom can be worn before having intercourse, it is less likely to 'interrupt.'");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("False: This is a bonus...it gives a woman more control over birth control and safer sex protection because she does not have to ask her partner to wear a condom. Because the female condom can be worn before having intercourse, it is less likely to 'interrupt.'");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("TF");
		oQ2.SetQuestionNumber(4);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);

		
		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("True");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("False");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);	


		// Optional 

		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" Men who smoke cigarettes are twice as likely as non-smokers to become impotent (have problems getting or keeping an erection).");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("True: Research finds that men who use drugs, drink too much alcohol or smoke cigarettes, are more likely to suffer from erectile problems in older age.");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("True: Research finds that men who use drugs, drink too much alcohol or smoke cigarettes, are more likely to suffer from erectile problems in older age.");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("TF");
		oQ2.SetQuestionNumber(5);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);

		
		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("True");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("False");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);

			oQ2.AddAnswer(oA2);	


		// Optional 

		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" All men who have sex with men will get HIV.");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("True: HIV does not discriminate: everyone is at risk. As long as you use protection when you have sex, then your risk of HIV is reduced.");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("False: HIV does not discriminate: everyone is at risk. As long as you use protection when you have sex, then your risk of HIV is reduced.");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("TF");
		oQ2.SetQuestionNumber(6);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);

		
		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("True");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("False");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);	


		// Optional 

		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" You can get an STI by sitting on a public toilet seat.");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("True: STIs live in warm areas, such as mucus membranes and body fluids. They cannot live in a cold, sterile environment such as a toilet seat.");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("False: STIs live in warm areas, such as mucus membranes and body fluids. They cannot live in a cold, sterile environment such as a toilet seat.");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("TF");
		oQ2.SetQuestionNumber(7);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);

		
		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("True");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("False");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);	


		// Optional 

		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" HIV, the virus that leads to AIDS, can be spread through kissing.");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("True: There have been no recorded cases of HIV spread through kissing. In fact, experts say you'd have to drink four buckets of saliva to be at risk...yuck!");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("False: There have been no recorded cases of HIV spread through kissing. In fact, experts say you'd have to drink four buckets of saliva to be at risk...yuck!");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("TF");
		oQ2.SetQuestionNumber(8);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);

		
		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("True");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("False");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);	


		// Optional 

		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" The best way to guarantee you won't get an STI is to have sex with only one person.");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("True: While having sex with one partner can help reduce your risk of STIs, it is also true that it only takes one time, or one infected partner, to spread an STI.");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("False: While having sex with one partner can help reduce your risk of STIs, it is also true that it only takes one time, or one infected partner, to spread an STI.");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("TF");
		oQ2.SetQuestionNumber(9);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);

		
		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("True");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("False");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);	


		// Optional 

		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

	oQ2 = new Question(); 

		oQ2.SetQuestionHTML(" Within 72 hours of having unprotected sex, you can take the morning after pill to avoid becoming pregnant and getting an STI.");

		oQ2.SetQuestionCssClass("question");
		oQ2.SetCorrectGuessHTML("True: The morning after pill (or emergency contraceptive pill) is available as an emergency to prevent pregnancy if someone has unprotected sex or the protection fails. It does not protect against STIs.");
		oQ2.SetCorrectGuessCssClass("correct");
		oQ2.SetIncorrectGuessHTML("False: The morning after pill (or emergency contraceptive pill) is available as an emergency to prevent pregnancy if someone has unprotected sex or the protection fails. It does not protect against STIs.");
		oQ2.SetIncorrectGuessCssClass("incorrect");
		oQ2.SetQuestionType("TF");
		oQ2.SetQuestionNumber(10);
		oQ2.SetAnswerNumberStyle("");
		oQ2.SetAnswerNumberCssClass("anumber");
		oQ2.SetPossiblePoints(1);

		
		// Repeat this indented block for each answer 

		oA2 = new Answer(); 

			oA2.SetAnswerHTML("True");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(1);

			oQ2.AddAnswer(oA2);		


		oA2 = new Answer();

			oA2.SetAnswerHTML("False");
			oA2.SetAnswerCssClass("answer");
			oA2.SetAnswerNumber(2);
			
			oA2.SetPointsForCorrectGuess(1);
			oA2.SetCorrect(true);

			oQ2.AddAnswer(oA2);	


		// Optional 

		oQuiz2.AddQuestion(oQ2);

/////////////////////////////////////////////////////////////////////////////

// This is optional 

oQuiz2.RandomizeQuestions();		


