var fDesc=new Array(); fDesc[0] = "True BASIC is the ideal language for the beginning student and for the sophisticated programmer who wants to solve complex problems on several different computers. True BASIC is simple enough to let the beginners write useful and interesting programs
right from the start. True BASIC’s screen editor makes it easy to read, write, and modify programs. New programmers can use the simpler features without
knowing anything about the full complexity of the language."; 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 = ''; } }