var fDesc=new Array();
fDesc[0] = "Your favourite characters are back, with a couple of new friends, for more extreme mini golf fun. Masses of new features (including multiplayer) and superb new graphics make this the most enjoyable and addictive golf game available.
Pocket Mini Golf 2 is the follow up to the hugely popular multi award winning miniature golf game Pocket Mini Golf.
Pocket Mini Golf 2 features a massive variety of holes, including fairways, rough, sand pits, beaches, loads of interesting objects to negotiate and much much more...
Multiplayer (Up to 6 players)
High Quality VGA Graphics
Multi-Language Support (English, French, German, Italian, Spanish)
New Graphics Engine
Improved Physics
Amazing Environments (including castles, deserts, jungles, mountains, beaches)
2 New Characters. 6 Golfers in total each with different skills/abilities
New Character Animations
Portrait and Landscape View supported on All devices
4 Game Types (Standard/Arcade-Time Carryover/Arcade-Time Attack/Practice). Play standard golf rules or against the clock.
3 Difficulty Settings (Amateur/Semi-Professional/Pro)
3 Brand New Courses of Increasing Difficulty (54 holes)
Win Bronze, Silver and Gold Awards. There are 9 awards to win per course";
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 = '';
}
}