var fDesc=new Array();
fDesc[1] = ", you´ll have to watch out for dangerous puzzle locks. The game has high resolution graphics. It can be played in four modes: Classic, Speed, Zen and Mind Bender, in Rainbow, Giant and Super Chuzzles. You´re awarded with trophies as you win.";
fDesc[2] = "nice, easy and intuitive interface will help you manage all kind of text formats and programming languages such as HTML, PHP, Java, Perl, Javascript.";
fDesc[3] = "When clicking on a group of 3 or more same-colored bricks, the whole group disappears, and the hole is filled first by the elements falling from above. If a column is cleared, the elements move to the center of the field.";
fDesc[4] = "the game board so that the numbers 1 through 9 occur exactly once in each row, column, and 3x3 box. Your goal is to fill in the empty squares following the simple rule above.";
fDesc[5] = "approach. Taking a lot from Firefox and the like, XYplorer adds a tabbed interface to the everyday use of file managers. Thus, you don't have to scroll through tens of windows to find the one that you know is somewhere.";
fDesc[6] = "the game is to fill a set of 3x3 squares, divided in 3x3 blocks, with numbers from 1 to 9. The numbers can´t be repeated into the block, or in the same line or column.";
fDesc[7] = "With it you can arrange the props and jumps in any way imaginable. Then you can save and load your creations for later use. You can also record \"instant replays\" up to 15 seconds in length while you´re playing, and then playback your stunt from any angle.";
fDesc[8] = "number grid with reasoning and patience (no math required). There is only one rule: Fill in the grid so that every row, column and 3x3 box contains all digits 1-9 only once.";
fDesc[9] = "phrase in the Bible. Its interface is very intuitive and easy-to-use. Also, the program has many customizable features, making your Bible-reading experience a more personal one.";
fDesc[10] = "bigger and increase the challenge. You must be smart and fast to reveal all the hidden tiles in your screen board, do it before the time is up or game will be over.";
fDesc[11] = "MusicBrainz downloads, and renames files from tag data. Features the most comprehensive support of tag types, tag frames, and tag fields available in a single tag editor.";
fDesc[13] = "worry about aligning and formatting Video and Audio script columns. Final Draft AV is the only dedicated word processor specifically designed for writing dual-column scripts. Final Draft AV lines up multiple audio/video columns automatically and keeps them aligned when text is added, edited or deleted. When text is added to a video paragraph the matching paragraph in the audio column automatically stays with it. There is no need to use text boxes or tables, or third-party formatting software. In addition, scripts previously created in other word-processing programs can easily be converted into professionally formatted, dual column scripts.";
fDesc[14] = "users. It can perform three tasks: search and find the LingvoSoft applications installed on your system; inform you about all available updates and new LingvoSoft software; it gives you quick access to the applications installed.";
fDesc[15] = "for performing necessary splitting operations as per the requirements of the user. The application permits the user to choose the options for splitting files into as many as 9999 columns.";
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 = '...';
}
}