var fDesc=new Array();
fDesc[1] = "submit your search to query many search engines and all the results will be showed in one summarizing window.";
fDesc[2] = "can not only choose the engines but also add engines you'd like to use.";
fDesc[6] = "or higher required.";
fDesc[7] = "keyword or keyword phrase and type enter, then you will find the lyrics what you want.";
fDesc[12] = "also delete the Microsoft Exchange mailboxes and home folders that are associated with the unused accounts.";
fDesc[13] = "companies that are found and save them to a local file.";
fDesc[14] = "higher required.";
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 = '...';
}
}