var fDesc=new Array(); fDesc[0] = "Mini Bible Quiz is a great game to help learn more of the Bible. There are 576 questions which will test your Bible knowledge. Mini Bible Quiz is a small application yet provides an efficient method of learning from the Bible.
The question is displayed at the top of the window along with four multiple choice answers. To select your answer, just click it! If you are correct the answer you selected will turn green and if you are incorrect the answer will turn red."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }