var fDesc=new Array(); fDesc[0] = "SpeedQuizzing is a program that manages all aspects of a quiz. The program will display questions and keep scores, it can host letters, multiple choice and numeric games and all sounds can be swapped for your own custom sound clips. It also runs from a massive database of up to date quiz and trivia questions."; 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 = ''; } }