var fDesc=new Array();
fDesc[0] = "Play over 1000 fun and challenging holes in an amazing mini-golf world! The intuitive and realistic 3D Virtual Play engine makes it easy to sink putts as you send your ball flying through loops, pipes, extreme ramps and mind-blowing obtacles. With a combination of real golf rules and wacky mini-golf fun, it's the ultimate challenge!
Realistic 3D Play
Zoom in, zoom out & rotate 360* up, down, left & right.
Wild & Crazy Obstacles:
* Flowers & Plants can slow you down, or be used to make ricochet shots.
* Sand Traps will cost you valuable strokes...just like on a real golf course!
* The Fan can push your ball high over obstacles--or past the hole!
* The Speeder gives your shot a boost.
* Wacky Loops, Crazy Pipes & Extreme Ramps bring classic mini-golf fun to your desktop.";
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 = '';
}
}