var fDesc=new Array();
fDesc[0] = "Repton 1 is a fascinating strategical puzzle game, featuring our green friend Repton in a series of thought-provoking and challenging levels!
Features:
-32 main levels starting with a few easylish warm-up levels, and building up through the Cascade scenario to the most difficult Repton 1 levels ever devised.
-20 children's levels designed for our younger Repton fans aged from 3 to 9 years old.
-An easy-to-use level editor for designing your own Repton 1 levels. It's fun to create your own levels, and if you make some intriguing and innovative levels, we may be interested in publishing your levels for other Repton aficionados to enjoy.";
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 = '';
}
}