var fDesc=new Array(); fDesc[0] = "Free SAT Practice Test brought to you by Practice Test Free is a desktop application to make you ready for a real SAT test. It consists of five subjects as in a real test and you can select all of subjects or only those you prefer to. The time for the exam is calculated same as SAT test and if you choose only certain subjects of the test, each subject will have its own time but the total time will be the addition of the subjects’ times."; 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 = ''; } }