var fDesc=new Array(); fDesc[0] = "Vocabulary Test is an application to improve your English Vocabulary. It can be used for preparing exams such as TOEIC, TOEFL, and GMAT. You can get your accuracy and see the wrong and correct answers in colored buttons. Green indicates correct and red indicates wrong answer. You can choose the difficulty in Basic to Advanced levels."; 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 = ''; } }