var fDesc=new Array();
fDesc[1] = "for instance, games, chat applications in webpages, image visualization, among others, that were written with the Java scripting language.";
fDesc[2] = "to be used on notebooks. The system fine-tunes the power consumption on notebooks by coordinating the activity of software and hardware integrally. It will increase the battery life cycle and spread the charging intervals.";
fDesc[3] = "the best space RTS ingredients. A long history, several factions, hundreds of weapons, strong multiplayer component and many ships and flying hours.";
fDesc[4] = "the world from total alien domination. See, that little incident in Black Mesa was just the beginning: now those pesky Xen invaders and a new threat called the Combine have spread across the whole Earth, causing massive amounts of death and destruction. It’s up to you to set things right. Half-Life 2 picks up some time after the original Half-Life left off - with Gordon working for the G-Man - and takes place in and around a Russian city called City 17.";
fDesc[5] = "spyware threats.It upgrades computer system performance and creating a secure computer that runs reliably.";
fDesc[6] = "expansion pack to Shadows of Amn. The game draws the Child of Bhaal saga to its dramatic conclusion. It is bundled with 30-50 hours of game play, 80 new areas spread across a dozen adventure areas,";
fDesc[7] = "they travel. Quad Missile - Four small missiles release at a distance, then home in. Carpet Bomb - Difficult to miss at a distance, very powerful with line-of-sight.";
fDesc[8] = "Outlook, when you try to do certain things, a lot of pop-ups will tell you if you really wanted to do what you just clicked to do. Those are security measures to avoid unwanted access to your inbox, the spread of spam, and many other security threats.";
fDesc[9] = "feature of pen-drives as well as other removable media drives. This application is very small and lightweight, therefore it can run smoothly even on low-end computer systems.";
fDesc[10] = "applications. The application lists of the Fifth Element are spread out in various categories namely Personal productivity software, Communications, Graphical software, Multimedia, General Utility, Security and Desktop Enhancement.";
fDesc[11] = "The game features cool graphics with a nice music, and includes plenty of options and upgrades to spread your lemonade business all over New York or even have a monopoly of this branch in the city.";
fDesc[12] = "and have remained popular ever since. They are seen as a means of getting in touch with the spiritual world.";
fDesc[13] = "borrowing money by comparing 135 loans at once! It automatically displays financial answers on a 2-dimension grid as you enter or update loan variables. You may easily view grids of loan amounts, interest rates, terms in months, or payment amounts based upon your loan variables.";
fDesc[14] = "The software also helps you improve your intuitive skills, making you more sensitive to the unexplored psychic realms.";
fDesc[15] = "food labels. The spreadsheet displays, summarizes, and prints the nutrient values using convenient household measures.";
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 = '...';
}
}