<!--
function MakeArrayType()
{
	return this;
}
function CheckAnswers()
{
	//Declare Variables
	var Answer = new MakeArrayType()
	Answer[1]=1
	Answer[2]=1
	Answer[3]=1
	Answer[4]=1
	Answer[5]=1
	Answer[6]=3
	var NumWrong=0
	var msg
	var NumQuestions=6


	//Check their answers with the "key" above
	//If a question is right, increase the NumWrong Value
	for(var i=0; i<NumQuestions; i++)
	if(document.quiz.elements[((3*i) + (Answer[i+1] - 1))].checked)

	{
		NumWrong++
	}

	//Now let them know their results.
	if(NumWrong <= 3)
	{
		msg="Based on your responses, CMU Online classes may not be the most effective way for you to learn."
	    window.alert(msg)
	}

	else if(NumWrong > 3)
	{
		msg= "Based on your responses, you stand a good chance for success in a CMU Online class!"
	    window.alert(msg)
	}
	return false;
}
// -->