var fDesc=new Array();
fDesc[1] = "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[3] = ", Mozilla browsers. Collect HTML snippets, generate bibliographies, edit snippets and export to CHM, PDF, HTML, RSS, MHT formats.";
fDesc[5] = ", and information sharing into a single user-friendly environment. It was written to be used with Latex, using Bibtex";
fDesc[6] = ", presentations, photo journals. Make your own flash cards. Share with team mates and collaborate.";
fDesc[7] = "bibliography format.";
fDesc[10] = "bibliographies in APA, Harvard, Author-Date and custom styles plus insert citations into documents as you type them.";
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 = '...';
}
}