var fDesc=new Array();
fDesc[0] = "FMRTE is real time editor for the Football Manager game. It allows you to edit almost everything in a player such as hair & skin color, attributes, relationships, clubs registration, and contracts. For clubs you can edit finances (loans, debts), kits colours, stadium, attendance, teams reputation, relationships, etc.
FMRTE includes a search filter, that allows you to personalize your search, making it easy for you to find the required data.";
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 = '';
}
}