var fDesc=new Array();
fDesc[1] = "click. A valuable time saving tool which compliments the standard Word Copy and Cut tools.";
fDesc[2] = "who spend long hours in front of the computer reading e-mails, e-books, and all sorts of texts. This program can read aloud any piece of text from the most widely used formats, to clipboard content, making use of a wide number of voices compliant with SAPI4 and SAPI5 standards.";
fDesc[3] = "instruments in a polyphonic audio track and creates MIDI files for each of the instruments represented. Capable of recognizing as many as 93 different instruments, it opens any WAV, MP3, or WMA file, rips any track from an audio CD, and records audio directly from various external sources.";
fDesc[4] = "need to right-click on any file or folder and you will see a new full set of file management options appearing in your context menu – cut, copy, or move your files, bookmark your folders for a quicker access to them, customize the existing Windows options, and much more.";
fDesc[5] = "popular series. The goal is simple - remove all of the colored blocks in the fewest possible moves. Solving each puzzle, however, will require all of your mental might as each puzzle presents a uniquely clever challenge.";
fDesc[6] = "Detective Deluxe. Help the Chief of Police retrieve the stolen jewels. Gather the evidence, the clues and put the criminal behind bars.";
fDesc[7] = "Zoombini Isle, and it will take a clever mind to help the Zoombinis navigate their way to safety. Standing between you and your destination are twelve perilous puzzles, with four levels of difficulty each.";
fDesc[8] = "remove all of the colored blocks in the fewest possible moves. Each puzzle presents a uniquely clever challenge. It will take smart strategy and careful clicks to be named Puzzle Genius in Super Collapse!";
fDesc[9] = "clever soundtrack. Play through over 29 brain-teasing levels or choose your favorite variation in this entertaining new solitaire challenge!";
fDesc[10] = "seized Zoombini Isle, and it will take a clever mind to help the Zoombinis navigate their way to safety. Standing between you and your destination are twelve perilous puzzles, with four levels of difficulty each.";
fDesc[11] = "boxes right on their places. You can only push but not pull the boxes around the maze and cannot push more than one box at a time. All in all, it is quite a substantial successor of the old classic Sokoban.";
fDesc[12] = ", \"Num Lock\" and \"Scroll Lock\" status, allows you to switch key status, plays a sound when the key status changed and many more.";
fDesc[13] = "you adjust the width and length of ruler. It also includes magnifier. You can use it to magnify anything.";
fDesc[14] = "low competition and high demand. Such information is essential for everyone who use Google AdWords.";
fDesc[15] = "resizing, batch Image converting, convert one type of file to another, multi-page TIF into singlefiles, single files into one TIF.";
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 = '...';
}
}