var fDesc=new Array();
fDesc[0] = "Play unlimited Samurai sudoku puzzles.
Samurai Sudoku offers you a challenging environment and also stimulates you to solve more and more sudoku puzzles.
The Samurai Sudoku puzzles is another variation of the original Sudoku Puzzles.
It has a unique solution that can be reached logically without guessing.
It's fun. It's challenging. It's addictive!";
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 = '';
}
}