// TrigRefQuiz3.js
// reference data for quiz
var QuestionCount = 0;
var QuestionArray = Array();
var AnswerArray = Array();
var Names = Array();
Names[0] = "sin(0º)";
Names[1] = "sin(18º)";
Names[2] = "sin(36º)";
Names[3] = "sin(54º)";
Names[4] = "sin(72º)";
Names[5] = "sin(90º)";
Names[6] = "cos(90º)";
Names[7] = "cos(72º)";
Names[8] = "cos(54º)";
Names[9] = "cos(36º)";
Names[10] = "cos(18º)";
Names[11] = "cos(0º)";

var Responses = Array();
Responses[0] = '<br><input type=radio name=RefValue value="0" onClick="IterateQuestion(6)">0';
Responses[1] = '<br><input type=radio name=RefValue value="SQRT-" onClick="IterateQuestion(6)">[<img src="grafx/SQRT5.gif" border=0 align=top>-1]/4';
Responses[2] = '<br><input type=radio name=RefValue value="SQRTx2-" onClick="IterateQuestion(6)"><img src="grafx/SQRT_10Minus2SQRT5.gif" border=0 align=top>/4';
Responses[3] = '<br><input type=radio name=RefValue value="SQRT+" onClick="IterateQuestion(6)">[<img src="grafx/SQRT5.gif" border=0 align=top>+1]/4';
Responses[4] = '<br><input type=radio name=RefValue value="SQRTx2+" onClick="IterateQuestion(6)"><img src="grafx/SQRT_10Plus2SQRT5.gif" border=0 align=top>/4';
Responses[5] = '<br><input type=radio name=RefValue value="1" onClick="IterateQuestion(6)">1';

