var fDesc=new Array();
fDesc[0] = "LispIDE is a basic graphical shell for several Lisp and Scheme implementations available for Windows.
Features:
-Syntax highlighting for Common Lisp, Scheme and many -Support for CLISP, SBCL, Corman Lisp or any commandline Lisp or Scheme implementation.
-Tabbed documents.
-Easy sending of Lisp expressions to the REPL.
-Command history using arrow keys.
-Common Lisp HyperSpec and Common Lisp the Language, 2nd edition included.
-Restart Lisp button.
-LispIDE uses Scintilla for it's editor component.";
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 = '';
}
}