var fDesc=new Array();
fDesc[0] = "Welcome to the MZ Assistant Website
MZ Assistant is a free software and it provides you with tons of useful information about your Soccer - Hockey Team that it collects using the official MZ tools web services.
The information is consolidated for quick and easy access, and it's organized in a user-friendly interface.
For instance, you can consult information about: Player Details, Leagues, Matches, Standings, Tactics, Trainings, Opponents Analysis, etc.";
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 = '';
}
}