var fDesc=new Array();
fDesc[0] = "Scoreboard is an application with clock, scorekeeping, and logging capabilities that can also display up to 24 scores at once (for tournament play, all using the same clock). It was originally written for Subbuteo* matches when I decided the little kitchen timers just didn't seem to add much to the feel of the game.
Scoreboard is free to anybody that finds it useful for individual matches, league play, or tournaments.";
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 = '';
}
}