var fDesc=new Array();
fDesc[0] = ".netchviewer is a smart and easy to use tool that helps you watch up to 10 matches live.
Main features:
- Multilingual: English, german (deutsch), italian (italiano), spanish (espanol), swedish (svenska), danish (dansk)
- Automatic login to Hattrick.org
- Watch up to 10 matches live
- Watch already finished matches in replay
- Play different sounds on different events on different teams (e.g. different sound if your team or your opponent scores etc.)
- Play different video on different events on different teams (e.g. different videoif your team or your opponent scores 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 = '';
}
}