var fDesc=new Array();
fDesc[0] = "Hypervisual Century is a freeware digital slot machine with three reels and three paylines.
This original and realistic machine goes beyond simple lever pulling: The ability to make multiple bets per payline, together with the reel lock feature, allow you to make strategic decisions that may lead you to your goal -- winning the jackpot!
Hypervisual Century is also a tribute to the technological and design achievements of the 20th century.";
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 = '';
}
}