var fDesc=new Array();
fDesc[0] = "Sokobano - An entertaining implementation of the old Japanese game Sokoban featuring nice 3D graphics and intuitive controls. Written in Java.
Features include:
- 3D graphics, skins & workers
- Several level sets increasing in difficulty (thanks to sokobano.de)
- Resume & replay mode-
- Intuitive mouse and keyboard control
- Background audio and sounds";
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 = '';
}
}