var fDesc=new Array(); fDesc[0] = "Quizmaker is an application that allows you to create your own quizzes. There is an Admin panel which allows the Admin to view a candidates score. The Admin can also set a time limit which determines how long the test or quiz will take. Quizmaker uses a multiple choice interface. The administrator can also write the questions that a candidate will answer."; 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 = ''; } }