var fDesc=new Array();
fDesc[1] = "Area * Custom Lesson Designer * Typing Games * Progress Tracking & Reporting * Special Language Options This application is available in three versions: Mac & Win; Mac only and Win only.";
fDesc[2] = "cannot afford to loose. WinRescue Vista will also restore our system after a computer crash, and remove all the unnecessary entries from our Windows Registry.";
fDesc[3] = "completely customizable. Comprehensive reports, interactive graphs, import and export options.";
fDesc[4] = "you from the rigid framework of conventional databases. LM manages ideas, as a brainstorming application.";
fDesc[5] = "character or symbol in the chart, and it will be inserted into your text. Supports 10 European languages.";
fDesc[6] = "product. All the Organizer your writing needs...Writers Project Organizer is manuscript orientated software for writers. Writ";
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 = '...';
}
}