var fDesc=new Array();
fDesc[0] = "In gyms, arenas, or school facilities you can use this software to display a basketball scoreboard. Normally, physical scoreboards are expensive and difficult to be established. This software provides a simple but useful scoreboard display.Just install it to your laptop and establish a connection between your laptop and a projector or an LCD/LED TV.
Customizable font, team names and colors. Separate panels: You can control scoreboard from separate control panel and audience does not see mouse gestures. No-windows border and toolbar. just seen display that you want. It provides more realistic view like a physical scoreboard.";
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 = '';
}
}