<!-- Begin
var ans = new Array;
var done = new Array;
var score = 0;
ans[1] = "a";
ans[2] = "c";
ans[3] = "a";
ans[4] = "b";
ans[5] = "a";
ans[6] = "b";
ans[7] = "a";
ans[8] = "c";
ans[9] = "b";
ans[10] = "c";
function Engine(question, answer) {
if (answer != ans[question]) {
if (!done[question]) {
done[question] = -1;
alert("Your score is still: " + score);
}
else {
alert("You have answered this question. Move on!");
}
}
else {
if (!done[question]) {
done[question] = -1;
score++;
alert("Your score is now: " + score);
}
else {		
alert("Only one try per question!");
}
}
}
function NextLevel () {
if (score  <= 6) {
alert("You are addicted, there is no hope, and you do not care!");
}
if (score >= 3 && score <= 5) {
alert("You are not an Addict . . . yet. But you may be working on it.")
}
if (score >= 0 && score <= 2) {
alert("You are moderate. You can live without it.")
}
}
// End -->
