var fDesc=new Array();
fDesc[1] = "download games to enjoy, and share them with others. You can actually share any digital file, including images, audio, video, software, documents, etc. The latest version supports BitTorrent protocol and Shoutcast radio stations.";
fDesc[2] = "from the user hard drive. This application features a variety of shredding algorithms, which protects the user's privacy by completely removing the selected files so that no file recovery software available in the market can recover them.";
fDesc[4] = "sizes, colors and styles.";
fDesc[8] = "previously deleted files on your hard drive. Shred Files, Folders, Recycle bin, drag & shred, DoD conform. Shred locked files & more.";
fDesc[9] = "them. That means your data contents one overwritten and destroyed and can't be recovered. Also includes a scheduler and multi language support.";
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 = '...';
}
}