var fDesc=new Array(); fDesc[0] = "The purpose of the program is very simple; It is to help a Quiz Master to handle lots of questions (in a database) and to make it as easy as possible to make selections from those questions to form a good Quiz show. The program is extremely simple to use and to quote Groucho Marx - "A child of five would understand this. Send someone to fetch a child of five". (You will find many more quotes from Groucho Marx in the program.) The first part is to Edit Questions and the second part is called to Build a Quiz. The program will help you to keep track of the questions previously used, so questions are not re-used to soon or to often when building a Quiz. The two main views are Edit Questions and Quiz Builder. They form the basis of the program together with the reports; Preview Questions and Preview Questions and Answers"; 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 = ''; } }