var fDesc=new Array();
fDesc[1] = "can easily be used by any user, even by a beginner. Just write the html code in the \"Design\" window and use tags from the toolbox with editing tag properties, and change the style of the text.";
fDesc[2] = ", allowing them to express themselves by drawing with the help of amusing cartoon characters at the whiteboard on your PC screen.";
fDesc[3] = "organized exactly how you want them. Use filters to add information, remove spaces, change capitalization and more.";
fDesc[4] = "over the overlapping boundaries of their star systems.";
fDesc[6] = "designed to steal critical financial data. PhishGuard works with Microsoft Internet Explorer to warn before you visit a known malicious site.";
fDesc[7] = "Evolution of competing trading strategies through genetic programming and market pricing dynamics collectively generate trading signals.";
fDesc[8] = "against hordes of enslaved drones. Crush the Najjhierian Pirates and show the Cannibals of Histina that their favourite food has teeth and claws. Fly four different ships through asteroid infested space, dodge bombers, and kick dozens of aliens and bosses where it hurts in more than two hundred waves of classic arcade action.";
fDesc[10] = "Snip-It Pro docks to the edge of your screen, making it easy to use with any IDE or Editor... Using it is easy as drag & drop.";
fDesc[11] = "or higher required.";
fDesc[12] = "program that provides instant access to either individual or collective records.";
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 = '...';
}
}