var fDesc=new Array();
fDesc[0] = "MBT SmartStats for Basketball helps you to track game actions, produce box scores and analyze statistics. It is official statistics software of FIBA Europe.
Main features:
- Preview and print game box score, leaders, best lineups, etc.
- Analyze diagrams and comparisons of all statistical categories
- Analyze play-by-play progress, score development and shot charts
- Reports are available in English, Spanish, German, French, etc.
- Reports can be localized to other languages";
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 = '';
}
}