var fDesc=new Array();
fDesc[2] = "close the grid cells,just like us older kids did on paper back in the olden days. This is a unique game, you probably haven't seen another game like it.";
fDesc[3] = "with videos from YouTube, and allows you to control your music with the Wiimote.";
fDesc[4] = "that work no matter what program you are in, you can: Launch a program or bring it back into focus Open a document, folder or Internet resource Minimize or maximize a window Resize, move or alter a window Issue a Media command, such as play, pause or volume up/down Start your screensaver or shutdown your computer Access hidden Windows utilities Control Winamp or compatible media players (we love QCD Player!) Instantly display any menu of programs or actions at the mouse pointer Using the ZenKEY configuration utility, you can add any program, add or alter any menu, and assign any keystroke to perform any action.";
fDesc[5] = "onto a CD, converting wav file format to the mp3 file format to listen to your favorite wavs but in the smaller mp3 format.";
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 = '...';
}
}