var fDesc=new Array(); fDesc[0] = "Tactics Manager is a soccer coaching software that enables you to create your own practices, tactics, and session plans. It features interactive 2D and 3D interfaces at various angles of the field. This program can also simulate 128 player actions such as walk, jog, run, receive, pass, shoot and 160 goalkeeper actions including ready, catching, diving, throwing, and kicking."; 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 = ''; } }