<!--
			function getRadioValue(question) {
			
			//Don't change these three variables
			var q1 = 'document.Quiz.' + question + '.checked';
			var ans = question + 'Ans';
			var a = eval(q1);
			
			//If you need to add a new question, add it at the end of this list with a new variable name
			var q1Ans = "If the subscriber is exempted as a federal, state, or municipal government body, the telecommunications provider should retain proof of name and status. OAR 150-401.794(1)(a).<br /><br />";
			var q2Ans = "If the subscriber is exempted based on &ldquo;public corporation&rdquo; status, please retain verification provided by subscriber. OAR 150-401.794(1)(a).<br /><br />";
			var q3Ans = "If the subscriber is exempted as a county or political subdivision, the telecommunications provider should retain proof of name and status. OAR 150-401.794(1)(b).<br /><br />";
			var q4Ans = "If the subscriber is exempted based on &ldquo;federally chartered corporation&rdquo; status, please retain verification provided by subscriber. OAR 150-401.794(1)(c).<br /><br />";
			var q5Ans = "If the subscriber is exempted based on Native American tribal status, please retain verification provided by subscriber. OAR 150-401.794(1)(d).<br /><br />";
			var q6Ans = "If the subscriber is exempted based on &ldquo;foreign government&rdquo; status, please retain verification provided by subscriber. OAR 150-401.794(1)(e).<br /><br />";
			var q7Ans = "If the subscriber is exempted based on &ldquo;regional housing authority&rdquo; status, please retain verification provided by subscriber. OAR 150-401.794(1)(f).<br /><br />";
			var q8Ans = "If the subscriber is exempted because they serve only as a connection between utilities, please retain verification provided by subscriber. OAR 150-401.794(1)(g).<br /><br />";
			
			//Don't change this section
			if (a==true) {
			document.getElementById(question).innerHTML=eval(ans);
			}
			else {
			document.getElementById(question).innerHTML='';
			}		
			}
			//-->
