var fDesc=new Array();
fDesc[1] = "speakers or ear phone. It actually generates different sound waves with different frequencies, wavelength, pitch and intensity, and when you listen these sound waves as a sound by using ear phone for some time then your brain will be stimulated.";
fDesc[2] = "Office System training. It will help you get the most from Excel (Basics and Intermediate), learning everything from creating simple sheets and workbooks to programming formulas.";
fDesc[3] = "auctions, monitoring sports results or need to stay logged in on a page. Refresher 1.2.0.5 includes additional features like Auction Template, HTML Editor, I.P. Tool, PC Timer and PC Reminder.";
fDesc[5] = "use it before tripping to a Spanish-speaking country or community, or as a refresher tool if you already speak Spanish. The tool also can be viewed online at the developer's site.";
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 = '...';
}
}