var whichone=1;
var tempmn=document.instantquiz.thequestion;
function generatequestions(){
document.instantquiz.theresponse.selectedIndex=0;
if (!document.instantquiz.cmode.checked||whichone>=total+1||whichone<=0)
document.instantquiz.thesolution.value='';
if (whichone>=total+1)
tempmn.value="End of Quiz. Thank You Very Much for taking our USA State Flags Quiz!  Did you PASS?  Try it again and/or ask others to take it!  To review correct answers, use with Cheat Mode box checked!";
else{
tempmn.value=whichone+")"+question[whichone]+"\n\n"+"a)"+eval('choice'+whichone+'[1]')+"\n"+"b)"+eval('choice'+whichone+'[2]')+"\n"+"c)"+eval('choice'+whichone+'[3]')+"\n"+"d)"+eval('choice'+whichone+'[4]');
if (document.instantquiz.cmode.checked)
document.instantquiz.thesolution.value=solution[whichone];
}
}

function responses(){
var temp2=document.instantquiz.theresponse;
var temp3=temp2.options[temp2.selectedIndex].text;
if (temp3!=solution[whichone]&&temp2.selectedIndex!==0)
document.instantquiz.thesolution.value="Sorry, the correct answer is "+solution[whichone];
else if(temp2.selectedIndex!==0)
document.instantquiz.thesolution.value=compliments[Math.round(Math.random()*compliments.length-1)];
}

generatequestions();

