var fDesc=new Array();
fDesc[1] = "replacing the text is big headache, especially for developers. Seeker provides a wonderful facility for all users to search files in easy steps with details like content, type of files, size of file and many more. Seeker also allows users to exclude some text during search.";
fDesc[2] = "in your computer) by storing it in a Database. What you do is create an Ultra Recall Database (*.urd file). You can create any number of database files and save them anywhere, transfer them to another system, etc";
fDesc[3] = "capture, organize, and recall all of your electronic information across all the applications that you use.";
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 = '...';
}
}