<!--
function Print(frm){

num=16; 

o="<HTML><HEAD><TITLE>Results</TITLE></HEAD>"+
'<BODY BACKGROUND="stone_back.gif" BGCOLOR="#ffffff" TEXT="#000000"><CENTER>'+
"<H1>Results</H1>";

r=0;
w=0;

for(i=1;i<=num;i++){
q=GenericGetVal(eval("frm.Question"+i));
a=GenericGetVal(eval("frm.Answer"+i));
if (q){q=q.toLowerCase();}
o=o+i+". ";

if(a==q){
r++;
o=o+"Correct!<P>";
}
else{
w++;
o=o+'Wrong! The correct answer was "'+a+'".<P>';
}
}

o=o+'<br>'+'<HR width=100>'+"You had a grand total of "+r+" right and "+w+
" wrong.</CENTER><HR width=100></BODY></HTML>";

document.writeln(o+"<P>");

}
//-->
