var fDesc=new Array();
fDesc[1] = "without large investments. Sound mixing becomes a pleasure, ran by mouse-clicks";
fDesc[2] = "create a number of complicated and hard to guess passwords. The main advantage is that the users do not have to worry about forgetting their passwords. The Key Maker software just requires a phrase to be provided by the users.";
fDesc[3] = "this software, the user can create help files using any desired editor and then compilation and manipulation can be done. HTML files can be simply created and edited with the help of this software.";
fDesc[4] = "developers and testers to utilize. Virtual GPS can output 10 various NMEA sentences to a serial port or UDP port of the computer with variable baud rates. Simulation of GPS receiver can be achieved through setting of numerous parameters and you can also simulate constellation ...";
fDesc[5] = "basically a software integrating all the functionalities of an all featured DVD player. They have been quite successful in doing so. The nDVD software features a decent LED display screen and also all the other features.";
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 = '...';
}
}