var fDesc=new Array();
fDesc[0] = "Visual Sokoban is a widely spread puzzle-class game in which you will have to solve puzzles of increasing complexity. In Visual Sokoban, your task is to collect lost objects and move them onto free storage locations. A level is finished when all the objects are on storage locations.
Main features:
- More than 3000 levels for hours of fun
- Unlimited undo, make as many mistakes as you want
- Save / Load / Quick Save / Quick Load a game
- Reset / Play Next / Play Previous Level
- Record the solution of a level
- Change every graphic of the game with the Skins menu
- Mouse support
- Multi-users support
- Invisible objects option for a new challenge";
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 = '';
}
}