var fDesc=new Array();
fDesc[0] = "Repton 2 builds upon the foundations of Repton 1 by including new game characters and additional objectives.
The extra game characters include spirits, cages, transporters, skulls, savepoints, starports and puzzle pieces. There are also guardian skulls; our hero Repton has to fulfil specific tasks to remove these skulls.
The puzzles are sometimes easy, often thought-provoking, and occasionally some may seem to be almost impossible.";
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 = '';
}
}