var fDesc=new Array();
fDesc[0] = "FastDraw Basketball helps you diagram, organize, and share your plays.
Main features:
- Quickly sketch your idea on the court, and FastDraw will automatically advance the action to the next frame.
- Customize your court by competition level and court size (half vs full).
- The tool smooths out your cut or pass and adds the appropriate action to the end.";
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 = '';
}
}