var fDesc=new Array();
fDesc[1] = "videofiles (DIVX,MPEG,AVI,etc) and DVD's using fast hashing. It uses fast hashing algorithm (27 GB movies/7 seconds), search subtitles recursively from your divx folders, upload entire series seasons subtitles in less than 1 minute. # Many more features";
fDesc[2] = ", easy and convenient. ActualDoc keeps track of the documents you are currently working on and helps you to find any of them";
fDesc[3] = "file using the MIS specification (subtext, chapters, URL...), .NFO or .TXT.";
fDesc[4] = "documents you are currently working with and helps you to find any of them with three clicks. Filtering options and documents viewer included.";
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 = '...';
}
}