var fDesc=new Array();
fDesc[0] = "WinShell is a free multilingual integrated development environment (IDE) for LaTeX and TeX. The program includes a text editor, syntax highlighting, project management, spell checking, a table wizard, BibTeX support, Unicode support, different toolbars and user configuration options. It is not a LaTeX system; an additional LaTeX package is required.
Some of the features are:
-Multi language support
o Brazilian-Portuguese, Catalan, Chinese,Czech, Danish, Dutch, English
o French, Galician, German, Hungarian, Italian, Mexican-Spanish, Polish
o Portuguese, Russian, Serbian, Spanish, Swedish, Turkish
-Project environment (Table of Contents, Figures, Tables, Bibliography)
-Built-in spell checker based on Hunspell
-Unicode support
-Bibliography support
-Forward and inverse search
-Table-Wizard
-One-instance-program
-Multiple documents
-Project and Output Window
-User defined programs
-Configure Tool Bars (symbols, user-def. programs, macros)
-Define macros
-Choose font
-Windows/Unix file format
-WinShell starts command line driven
-Syntax highlighting
-Wrap mode
-Drag & Drop
-Portable WinShell";
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 = '';
}
}