var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();


questions[0] = "1) In the controlled study by Frederick, the graphologists significantly exceeded chance in selecting genuine suicide notes.";
choices[0] = new Array();
choices[0][0] = "True";
choices[0][1] = "False";
answers[0] = choices[0][0];

questions[1] = "2) Measured and rated variables between suicide notes and non-suicide writing showed statistically significant differences.";
choices[1] = new Array();
choices[1][0] = "True";
choices[1][1] = "False";
answers[1] = choices[1][0];

questions[2] = "3) It is not important to separate 'observation' from 'interpretation.'";
choices[2] = new Array();
choices[2][0] = "True";
choices[2][1] = "False";
answers[2] = choices[2][1];

questions[3] = "4) Sedeyn found that straight and heavily drawn lines were a recurrent characteristic in the suicide notes.";
choices[3] = new Array();
choices[3][0] = "True";
choices[3][1] = "False";
answers[3] = choices[3][0];

questions[4] = "5) Most of the suicide notes in the Sedeyn research contained a signature.";
choices[4] = new Array();
choices[4][0] = "True";
choices[4][1] = "False";
answers[4] = choices[4][0];

questions[5] = "6) In the Cameron research, the letter 'k' was de-emphasized in the suicide notes.";
choices[5] = new Array();
choices[5][0] = "True";
choices[5][1] = "False";
answers[5] = choices[5][1];

questions[6] = "7) The real significance of the Sedeyn and Cameron studies is the combined pattern that emerges.";
choices[6] = new Array();
choices[6][0] = "True";
choices[6][1] = "False";
answers[6] = choices[6][0];

questions[7] = "8) A limited amount of writing will limit the accuracy of any conclusions.";
choices[7] = new Array();
choices[7][0] = "True";
choices[7][1] = "False";
answers[7] = choices[7][0];

questions[8] = "9) According to Sedeyn, light pressure in handwriting is interpreted as a sign of energy.";
choices[8] = new Array();
choices[8][0] = "True";
choices[8][1] = "False";
answers[8] = choices[8][1];

questions[9] = "10) Exaggerated 'k' and excessive capitalization are among the several factors in the suicidal personality profile.";
choices[9] = new Array();
choices[9][0] = "True";
choices[9][1] = "False";
answers[9] = choices[9][0];

questions[10] = "11) Handwriting in suicide notes differs from the handwriting of controls.";
choices[10] = new Array();
choices[10][0] = "True";
choices[10][1] = "False";
answers[10] = choices[10][0];

questions[11] = "12) Certain identifiable handwriting variables seem to differ significantly between suicide notes and control notes.";
choices[11] = new Array();
choices[11][0] = "True";
choices[11][1] = "False";
answers[11] = choices[11][0];

questions[12] = "13) The reliability or validity of the identified handwriting variables as predictors of suicide can be affirmed with just the current available research.";
choices[12] = new Array();
choices[12][0] = "True";
choices[12][1] = "False";
answers[12] = choices[12][1];

questions[13] = "14) The handwriting variables identified as differing between suicide notes and controls by Cameron et al must be verified by a larger number of suicide and control notes.";
choices[13] = new Array();
choices[13][0] = "True";
choices[13][1] = "False";
answers[13] = choices[13][0];

questions[14] = "15) In the study of handwriting in suicide notes, external or internal influences such as drugs or physical disabilities should be taken into account.";
choices[14] = new Array();
choices[14][0] = "True";
choices[14][1] = "False";
answers[14] = choices[14][0];

questions[15] = "16) The Frederick study found enough graphic signs to permit a graphologist to select genuine suicide from control notes.";
choices[15] = new Array();
choices[15][0] = "True";
choices[15][1] = "False";
answers[15] = choices[15][0];

questions[16] = "17) In the Cameron study, suicide notes consistently showed a pattern of shorter vertical expansion.";
choices[16] = new Array();
choices[16][0] = "True";
choices[16][1] = "False";
answers[16] = choices[16][1];

questions[17] = "18) In the Cameron study, suicide notes consistently showed a pattern of greater vertical expansion.";
choices[17] = new Array();
choices[17][0] = "True";
choices[17][1] = "False";
answers[17] = choices[17][0];

questions[18] = "19) In the Cameron study it was found that capital letters were more elaborate than in the controls.";
choices[18] = new Array();
choices[18][0] = "True";
choices[18][1] = "False";
answers[18] = choices[18][1];

questions[19] = "20) In the Cameron study, individual word baselines tended to descend in the suicide notes.";
choices[19] = new Array();
choices[19][0] = "True";
choices[19][1] = "False";
answers[19] = choices[19][0];

questions[20] = "21) Excessive capitalization and broad 'e' give evidence of reality distortion, among other aspects of the suicidal personality.";
choices[20] = new Array();
choices[20][0] = "True";
choices[20][1] = "False";
answers[20] = choices[20][0];

questions[21] = "22) Graphological investigation has nothing to offer to the field of suicidology.";
choices[21] = new Array();
choices[21][0] = "True";
choices[21][1] = "False";
answers[21] = choices[21][1];


// response for getting 100%
response[0] = "Wow, all correct! Click OK to continue...";
// response for getting 90% or more
response[1] = "Excellent! Click OK to continue..."
// response for getting 80% or more
response[2] = "Click OK to continue...";
// response for getting over 50%
response[3] = "Nice one, you got more than half of the questions right, can you do better?";
// response for getting 40% or more
response[4] = "You got some questions right, you can do better!";
// response for getting 20% or more
response[5] = "You didn't do too well, why not try again?";
// response for getting 10% or more
response[6] = "Try again to improve!";
// response for getting 9% or less
response[7] = "Less than 10% correct; you need to go back to try again!";

