var fDesc=new Array();
fDesc[2] = "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[3] = ", where you play; save; and load you games any time you want. Color and candidate number option. The program runs with Windows.";
fDesc[4] = "functions including a two player mode, over 20 different symbol sets, an integrated MP3 player, high score function, puzzle printing and more.";
fDesc[5] = "grid with 81 cells without repeating them in rows, columns and regions. A simple game - but unbelievable addictive!";
fDesc[6] = "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[7] = ", just press F1 when you start the game to learn how to play.";
fDesc[10] = "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[11] = "enables you to create mini (4x4), standard (9x9) and others sudoku puzzles, offering you the possibly of choosing the symbols, complexity and different difficulty levels.";
fDesc[12] = "music. The game includes four difficulty levels, from novice to master, and four different themes to never get bored: Fire, Wind, Earth and Water.";
fDesc[15] = "assistance and guidance to point you in the right direction and assist in the prevention of common mistakes.You must STILL use LOGIC";
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 = '...';
}
}