var fDesc=new Array();
fDesc[1] = "time between updates Its first and only available version was released on March 2008; with a basic network discovery, monitoring and graphing feature.";
fDesc[2] = "entertainment. You will find different puzzles and challenges where you must find items, treasures, clues, collect special items and the most important, find the stolen Venus.";
fDesc[3] = "the future, with quick and easy one-click access to LinkedIn - save and return to profiles of interest, see connections at any hiring company, get introduced to hiring managersinclude HotJobs, Monster, Craigslist, CareerBuilder, Simply Hired, Dice, and Vault)";
fDesc[9] = "queries and view results by entering information in the program. I-Ching Insider offers advice based on the 64 hexagrams in the Book of Changes.";
fDesc[12] = "the user?s computer.They are strongly encrypted and hidden inside image files.The encoding program is also hidden inside another program";
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 = '...';
}
}