function openPrivacyPolicy(){
	newWin = window.open('http://www.clorox.com/global_privacy.html','printf','width=485,height=585,menubar=no,scrollbars=yes,resizable=yes');
	newWin.focus();
}

function openLegalNotice() {
	newWin = window.open('http://www.thecloroxcompany.com/legal.html','Legal Notice','width=600,height=585,menubar=no,scrollbars=yes,resizable=yes');
	newWin.focus();
}

function openContactUs() {
	newWin = window.open('http://clorox.consumerreply.com/Clorox/classroomcleanup/faqs.nsf/WebContactUs?OpenForm','ContactUs','width=810,height=585,menubar=no,scrollbars=yes,resizable=yes');
	newWin.focus();
}

function setText() {
	document.tellTeacher.message.value = "I hear your classroom is full of tiny bullies (germs), and I've just discovered a great way to expel them. The Clorox(r) Clean up the Classroom! multimedia kit contains coupons for Clorox(r) disinfecting and sanitizing products, educational information on germs in the classroom and fun activities for your students. \n\nWant to help make your classroom a healthier place to learn? Pre-register for a kit for next year at www.cloroxclassrooms.com.";
}

function scoreQuiz(formObj) {	
	var key = new Array();
	key[0] = "";
	key[1] = new Array();
	key[1]['answer'] = 3;
	key[1]['userAnswer'] = "";
	key[1]['correct'] = false;
	key[2] = new Array();
	key[2]['answer'] = 1;
	key[2]['userAnswer'] = "";
	key[2]['correct'] = false;
	key[3] = new Array();
	key[3]['answer'] = 0;
	key[3]['userAnswer'] = "";
	key[3]['correct'] = false;
	key[4] = new Array();
	key[4]['answer'] = 1;
	key[4]['userAnswer'] = "";
	key[4]['correct'] = false;
	key[5] = new Array();
	key[5]['answer'] = 3;
	key[5]['userAnswer'] = "";
	key[5]['correct'] = false;
	
	
	 for (var i=0;i<formObj.q1.length;i++){
	 	if (formObj.q1[i].checked){
	 		if (i==key[1]['answer']){
	 			key[1]['correct'] = true;
	 		}
			key[1]['userAnswer'] = i;
	 	}
	 }
	 for (var i=0;i<formObj.q2.length;i++){
	 	if (formObj.q2[i].checked){
	 		if (i==key[2]['answer']){
	 			key[2]['correct'] = true;
	 		} 
	 		key[2]['userAnswer'] = i;
	 	}
	 }
	 for (var i=0;i<formObj.q3.length;i++){
	 	if (formObj.q3[i].checked){
	 		if (i==key[3]['answer']){
	 			key[3]['correct'] = true;
	 		} 
	 		key[3]['userAnswer'] = i;
	 	}
	 }
	 for (var i=0;i<formObj.q4.length;i++){
	 	if (formObj.q4[i].checked){
	 		if (i==key[4]['answer']){
	 			key[4]['correct'] = true;
	 		} 
	 		key[4]['userAnswer'] = i;
	 	}
	 }
	 for (var i=0;i<formObj.q5.length;i++){
	 	if (formObj.q5[i].checked){
	 		if (i==key[5]['answer']){
	 			key[5]['correct'] = true;
	 		} 
	 		key[5]['userAnswer'] = i;
	 	}
	 }
	 
	var numCorrect = 0;
	for (var z=1;z<key.length;z++){
		if (key[z]['correct']==true){
			numCorrect += 1;
			document.getElementById("q"+z+"a"+key[z]['answer']).style.color = "#AC1B88";
			document.getElementById("q"+z+"a"+key[z]['answer']).innerHTML += "&nbsp;&nbsp;CORRECT!";
		} else {
			if (key[z]['userAnswer']!="") {
				document.getElementById("q"+z+"a"+key[z]['userAnswer']).style.color = "#FF0000";
				document.getElementById("q"+z+"x"+key[z]['userAnswer']).innerHTML = "X";
			}
			document.getElementById("q"+z+"a"+key[z]['answer']).style.color = "#AC1B88";
		}
	}
	document.getElementById("quizHeader").innerHTML = '<span class="quizAns">You got ' + numCorrect + ' out of 5 right.</span>  <span class="quizTxt">The correct answers appear below. If you got a question wrong, there will be an X next to it.</span>';
	document.getElementById("submit_div").innerHTML = '<a href="downloads/Germ_Genius_Quiz.pdf" target="_blank"><img src="/img/activities/download_pdf_btn.gif" width="107" height="50" alt="Download PDF" /></a><br /><img src="/img/p.gif" height="5" width="1" /><br />Download a PDF of our extended Germ Genius Quiz';
	
	return false;
}

function swapForm(type) {
	if (type=="teacher"){
		for (var i=2;i<10;i++){
			var tmpName = "rf_txt"+i;
			document.getElementById(tmpName).style.display = "none";
		}
//		document.getElementById("regTxt").innerHTML = 'Help rid the classroom of illness-causing germs with a free Clean Up the Classroom! kit** from Clorox&reg;. Sign up for a kit for your classroom or nominate a teacher to receive one. This multimedia kit contains a canister of Clorox&reg; Disinfecting Wipes, a guide on germs and how to get rid of them and a poster. Sign up today and make your classroom a healthier place to learn.';
		document.getElementById("rf_option1").style.display = "inline";
		document.getElementById("rf_option2").style.display = "none";
	} else if (type=="nominating") {
		for (var i=2;i<10;i++){
			var tmpName = "rf_txt"+i;
			document.getElementById(tmpName).style.display = "inline";
		}
//		document.getElementById("regTxt").innerHTML = 'Rid the classroom of illness-causing germs with a free Clean Up the Classroom! kit** from Clorox&reg;. Sign up for a kit for your classroom or nominate a teacher to receive one.<p>The multimedia kit contains:<ul><li>A canister of Clorox&reg; Disinfecting Wipes</li><li>A guide on germs and how to get rid of them</li><li>A poster</li><li>A DVD</li></ul>Sign up today!';
		document.getElementById("rf_option2").style.display = "inline";
		document.getElementById("rf_option1").style.display = "none";
	}
}










