var fDesc=new Array();
fDesc[0] = "With Creation Master you can edit many of the characteristics of FIFA. It is the most popular tool for editing FIFA and a “must have” for all the editors. Thanks to its friendly graphic interface, the usage of CM is very easy and intuitive.
Objects you can modify using CM:
-Countries
-Players
-Teamsincludingkitsandlogos
-Adboards
-SupporterFlags
-Leagues
-Tournaments
-Stadiums
-Tactics
-Balls
-Boots
-Sponsors
-TVindicatorsandpop-ups
-Newspapers
-Goalkeeperglovesandgenerickits
-Refereesandrefereekits
-Managers";
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 = '';
}
}