var fDesc=new Array();
fDesc[0] = "SokoSolve is a Sokoban game and enthusiast tools. Featuring: Game, Library, Solver, Editor, and Generator. SokoSolve is free GPL open source, and is kindly hosted by SourceForge. It is written for Windows (in C#.NET).
Sokoban is the Japanese word for warehouse keeper and is a puzzle game in which the player must push (but never pull) one crate/box at a time to predetermined goal positions. The game has few rules and appears simple, yet it is surprisingly addictive and holds unexpected complexity.";
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 = '';
}
}