var fDesc=new Array();
fDesc[0] = "Hattrick's Helping Hand is a CHPP certified software tool to assist in the usage of the webbased game Hattrick.
Main features:
- Downloading the necessary data from the Hattrick website (using login and security code).
- A list of all senior players, with their respected skills.
- A list of all youth players, possibility to display the "known" skills, ratings, promotion and training status.
- Changes are being displayed in the main screen for a determined amount of time, by using red and green colors.
- Individual display of a players skills, along with history and performance.
- Show statistics of the current squad, like average age, average TSI, etc.
- Show all former players and their last known skills.";
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 = '';
}
}