var fDesc=new Array();
fDesc[1] = "a few words in it. On top of that, users can download a number of other free dictionaries from the website and use them in conjunction with the application.";
fDesc[2] = "Registry, Start Up, Tweak UI, Net Tweaker, The Privacy, File Shredder, Invisible Man. Site: www.wintools.net";
fDesc[3] = "which assist the user in performing total clean up of the PC. Whenever user uninstalls any software, temporary files and files not deleted often remain on the hard disk, but the \"Clean Uninstaller\" tool takes care of this problem.";
fDesc[4] = "simulation. Model ChemLab consists of a real-time animated interactive simulation engine. It features lab wizard tools which can be used to create lab simulations. The simulation so made can be replayed using the demonstration mode.";
fDesc[5] = "built-in periodic table of the elements, stopwatch, number base conversions, vectors, matrices and complex numbers.";
fDesc[6] = "table forming the basics of chemistry, with all the elements listed in it. Those elements and their origin, importance, usage, etc are explained in the way that everyone can understand it, easily.";
fDesc[7] = "large number of skins (even some inventive ones that are quite different from \"standard\" designs): for instance, one that displays the Manchester United soccer team logo, another suitable for children, one featuring the periodic table of elements, etc.";
fDesc[8] = "personal or professional commitments, it would prove out to be a great blow to their valuable relations. Now, users don’t have to worry as they will get a permanent companion in the form of Multi Reminders will won’t allow this tragedy to happen with them.";
fDesc[9] = "math/chemical equations simple vector graphics and pictures.";
fDesc[10] = "structure, ionic bonding, covalent bonding, bond energies and the Periodic Table.";
fDesc[11] = "System actions to be executed described by the task as script that looks like JavaScript.";
fDesc[12] = "graphs. You may print or copy data to the clipboard as well as hitting compiled Internet resources.";
fDesc[13] = "also contains a wealth of nuclear information on each isotope, including half life, decay mode, and daughter products.";
fDesc[14] = "introducing variables that include initial balance, periodic payments, interest of your investments, start and end dates so you can have an idea of the amount of money you can save with certain behavior.";
fDesc[15] = "Cubic Quad Vertical Helical. Also performs various transmission line and network calculations.";
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 = '...';
}
}