var fDesc=new Array();
fDesc[0] = "FRAMEBALL is a snooker scoring and statistics application designed for use on local Windows based PC’s.
Suitable for recreational use as just a stand-alone snooker scorer, or for more serious practice and competition in which you want to analyse results and performance, FRAMEBALL provides a powerful snooker accessory that can be enjoyed by all enthusiasts of the game.
Features:
-Single key stroke input for easy scoring
-Fully customizable colours and background
-Clean and simple layout allows for easy viewing
-Compact and full screen modes.
-Highest break board and performance reports";
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 = '';
}
}