var fDesc=new Array();
fDesc[0] = "Information management for owns team and opponent teams, including profile, records and comments of player, team, and staff member
- One Map of Teams for owns and another for other teams else
- Map's items can be manipulated by menu and drag-drop
- Map of Teams navigates you to the details of player, team, coach and staff member
- Clicking See button, the related contents can be found on Formations, Tactics and Persons
- Reviewing and editing players' state on the List of Players";
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 = '';
}
}