var fDesc=new Array();
fDesc[0] = "It's mini-golf with a twist! Shrink your ball and play indoors. Get all the thrills of birdies and bogeys, in the comfort of a house. Putt your way through the kitchen, study, living room and more from a new perspective. 3D graphics make you feel like you're playing through a whole new kind of course. You might want to warn your neighbors: Fore!
Hot-seat multiplayer mode.
Multiple camera angles.
9 fantastic courses.
3D graphics";
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 = '';
}
}