var fDesc=new Array();
fDesc[1] = "Windows XP, Vista and Windows 7. WinEdt can be used as a front end for compilers and typesetting systems, such as TeX or HTML. It allows you to customize highlighting schemes and features multilingual spell checking. You can download word lists from WinEdt.s Community site.";
fDesc[2] = "edit and typeset this kind of text with ease. Scientific WorkPlace is basically a word processor that integrates mathematical input and computations. Scientific WorkPlace uses LaTeX.";
fDesc[3] = ", VHDL, PHP, C#, and to some extent D";
fDesc[4] = "notepad and don’t have high costly developer software. Presently Programmer’s Notepad supports for Ada, Assembler, Bash, Batch file, C, C++, c#, CSS, D, Diff, Docbook XML, Fortran 77, Fortran 95, HTML, IDL, Java, Javascript, LaTeX, Lua, Make, Matlab, Modula-2, etc.";
fDesc[5] = "the Java Virtual Machine (version 1.5 or newer), so it works equally well on Windows, Linux and Mac OS X. With this program you can start a new database, open an already made one, import a database or import data from an external SQL source.";
fDesc[6] = ", project management, spell checking, a table wizard, BibTeX support, Unicode support, different toolbars and user configuration options. This is NOT a LaTeX system; an additional LaTeX package is required.";
fDesc[7] = "notation handling collisions, spacing and line-breaking completely automatically. As the input is text-based, it can also be integrated seamlessly with HTML and LaTeX documents.";
fDesc[9] = ", TEXT, ODT, ODS, XML, SQL, Lotus, DBF, TEX, DIFF, SYLK, Latex. The program has a Windows Explorer-like appearance that supports multiple file selection. The conversion process is easy and fast.";
fDesc[10] = "makes sure that your formulas look good, print prettily, and play nice with the rest of the text.";
fDesc[12] = "the creation of LaTeX documents.";
fDesc[14] = ", and information sharing into a single user-friendly environment. It was written to be used with Latex, using Bibtex";
fDesc[15] = "environment. The native document format of soft4science SciWriter is a subset of XHTML 1.1 and MathML 2.0";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}