var fDesc=new Array();
fDesc[0] = "Highland Fling
This game has a great feature - PLUS mystery bonus prizes! Bet up to 1000 credits per line and be dazzled by your wins! Feeling Scottish today?
If a wildcard (blue shield) appears on the first and last reel in the same spin, the Highland Feature is triggered.
The Scottish doors will then close. You must then choose a shield on the left and right sides of the screen. The shield on the left side reveals the number of free spins (maximum 20), and the shield on the right side of the screen reveals the multiplier for the pokies free spins. The first and last reels are locked in place for the duration of the free spins - ensuring big payouts as the wildcards will substitute for all symbols except scatters.";
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 = '';
}
}