var fDesc=new Array();
fDesc[1] = "formats. Simply right-click on any audio, image, or video file, and you can immediately convert it to any other supported format.";
fDesc[4] = "software! Just click the icon in your systray, enter search text, select the search engine and go! Create your own searches.";
fDesc[6] = "move past (+), (-), and Neutral particles in the maze. Pick-up bonus balls and power-ups. Non-violent fun for the whole family.";
fDesc[8] = "formats and perform a variety of advanced operations directly from any right-click context menu.";
fDesc[9] = "horizontal or vertical, of 3 or more identical gems. Sets can be horizontal or vertical, and can contain more than 3 gems.";
fDesc[10] = "formats are supported. Advanced features include batch format conversion; thumbnailing; screen capture, slideshow, and much more";
fDesc[11] = ", surprises, and bonus games abound!";
fDesc[15] = "the colors before they enter the center square.";
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 = '...';
}
}