var questions = new Array();
var choices = new Array();
var answers = new Array();
var response = new Array();

questions[0] = "1) Anorectics and bulimics use food and activity as a sublimate for involvement in life.";
choices[0] = new Array();
choices[0][0] = "True";
choices[0][1] = "False";
answers[0] = choices[0][0];

questions[1] = "2) Eating disorders may reflect various other disorders.";
choices[1] = new Array();
choices[1][0] = "True";
choices[1][1] = "False";
answers[1] = choices[1][0];

questions[2] = "3) There has been no research into the medical indicators of eating disorders as seen in handwriting.";
choices[2] = new Array();
choices[2][0] = "True";
choices[2][1] = "False";
answers[2] = choices[2][1];

questions[3] = "4) Anorexia has been defined as a psychological and endocrine disorder.";
choices[3] = new Array();
choices[3][0] = "True";
choices[3][1] = "False";
answers[3] = choices[3][0];

questions[4] = "5) The three phases of increasing severity in anorexia are: physical change, psychological change, and loss of sleep.";
choices[4] = new Array();
choices[4][0] = "True";
choices[4][1] = "False";
answers[4] = choices[4][1];

questions[5] = "6) Anorexics tend to withdraw from friends and close personal relationships.";
choices[5] = new Array();
choices[5][0] = "True";
choices[5][1] = "False";
answers[5] = choices[5][0];

questions[6] = "7) As many as 15% of anorexia victims die as a result of the behaviors in which they engage.";
choices[6] = new Array();
choices[6][0] = "True";
choices[6][1] = "False";
answers[6] = choices[6][0];

questions[7] = "8) Suicide is common among anorexics.";
choices[7] = new Array();
choices[7][0] = "True";
choices[7][1] = "False";
answers[7] = choices[7][1];

questions[8] = "9) Families of anorexics appear generally unstable.";
choices[8] = new Array();
choices[8][0] = "True";
choices[8][1] = "False";
answers[8] = choices[8][1];

questions[9] = "10) Families of anorexics often a history of depression, mood disorders, and substance abuse.";
choices[9] = new Array();
choices[9][0] = "True";
choices[9][1] = "False";
answers[9] = choices[9][0];

questions[10] = "11) It is common for fathers of anorexics to be domineering and possessive.";
choices[10] = new Array();
choices[10][0] = "True";
choices[10][1] = "False";
answers[10] = choices[10][1];

questions[11] = "12) Dr. Kevenkron indicates that the anorexic sees herself as being loved for not having needs of her own.";
choices[11] = new Array();
choices[11][0] = "True";
choices[11][1] = "False";
answers[11] = choices[11][0];

questions[12] = "13) Anorexic patients learn to eliminate the negative behaviors by engaging in alternative activities.";
choices[12] = new Array();
choices[12][0] = "True";
choices[12][1] = "False";
answers[12] = choices[12][0];

questions[13] = "14) A high level of structure is of primary importance in helping the anorexic to recover.";
choices[13] = new Array();
choices[13][0] = "True";
choices[13][1] = "False";
answers[13] = choices[13][0];

questions[14] = "15) Handwriting has specific indicators for anorexia and bulimia.";
choices[14] = new Array();
choices[14][0] = "True";
choices[14][1] = "False";
answers[14] = choices[14][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!";