var fDesc=new Array(); fDesc[0] = "Daisuke-Edit is a Ti-Basic editor for 68k models.
Main features:
-Syntax coloring
-Automatic correction of capitalization
-Editing programs, functions, expressions, lists, matrices and chains in the format of the calculators TI-89 (and Ti-89 Titanium), TI-92, TI-92 Plus and Voyage 200.
-Allows you to save a file for the 4 models simultaneously.
-Use of characters of the calculator.
-Fast access to functions and commands using three different interfaces.
-Numeration of lines.
-Complete support for undo and re-do.
-Tools for the elaboration of Dialog, PopUp, ToolBar, and Custom structures.
-Tools for the elaboration/edition of lists and matrices."; 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 = ''; } }