var fDesc=new Array();
fDesc[1] = "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[2] = "difficult levels, timer, and option of pencil mark and wrong move prompt.";
fDesc[3] = "user can also choose between five levels of complexity - from Easy to Extreme. Each puzzle is generated randomly so there is an almost limitless selection.";
fDesc[4] = "3x3 blocks with the numbers from 1 to 9, without repeating the same number neither in the 3x3 block, or the same row or column. When you begin the game, some numbers are in its place already.";
fDesc[5] = "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[6] = "numerous varieties of sudoku, you can play with numbers or letters according to your preference. Plus you'll save or print your game, adjust game options, recording statistics and consulting assistance. Available for Windows and Mac.";
fDesc[7] = "of Sudoku! Sudoku Up includes five difficulty levels to challenge you. Enjoy the detailed statistics of each game with graphs, 3D pie and bar charts, and tables to estimate your skill level.";
fDesc[8] = "an American game. The object of the game is to enter numbers in a 9x9 grid, divided in 3x3 blocks. Each block will have a number from 1 to 9 in each cell, in such way that you can´t repeat a number in the block, or the row, or the column.";
fDesc[9] = "by Big Fish Games have a common interface from which we can manage all the games from Big Fish Games that we have currently installed in the computer.";
fDesc[10] = "consists of a 9x9 grid which you will need to fill in with numbers using logic and reasoning. This challenge game has kept the entire puzzle lovers perplexed!";
fDesc[11] = "played sudoku, the game is played on a lattice board which is divided in a certain number of rows and columns that form little squares. Some square have initial number, symbols or letters called clues that help you find the remaining ones.";
fDesc[12] = "3x3 box indicated by the slightly heavier lines has the numbers 1 to 9. There are a number of Sudoku solvers out in the web, but this version has been designed to make it especially easy to enter Sudoku competitions.";
fDesc[13] = "creating Half Life's Natural Selection mod.The board has a \"Chinese look\" and is big enough to pick squares with mouse. To write a number we don't need to use the keyboard. There's an option to get hints if you get stucked.";
fDesc[14] = "puzzles are very exciting and sometimes a player has to spend a lot of time solving them. The game has very simple rules that can be easily found in the Internet. Sudoku Queen is a great application that allows playing Sudoku right on your computer.";
fDesc[15] = "This software supports print outs to help the users from being glued to the monitors for long hours that Sudoku demands while solving the puzzle. Mega Sudoku Plus can be played by kids to improve their logical reasoning.";
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 = '...';
}
}