var fDesc=new Array(); fDesc[0] = "Imperial Sudoku 1.0 is a PC version of the popular Sudoku game.

Sudoku is an american game that became popular in Japan. The object of 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.

In Imperial Sudoku you will be able to play in easy, medium, hard or custom modes.

The game begins with some numbers in place already, that will define how can you place the rest of the numbers.

Moving your mouse on an empty cell, the program will mark the area where the numbers can´t be repeated. Then it will show a wheel with all the numbers from 1 to 9. To choose the one that you want to place in that cell, you must click on it with the mouse.

If it´s no possible to place that number in that cell, the game will mark the number in red and play a distinctive sound. You´ll have to replace that number, or some number in the same row, column or square.

You can also create, save and load your own puzzles, using the built-in puzzle editor."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }