var fDesc=new Array();
fDesc[0] = "Now you can have all the of Trucomania in your computer , without having to be connected to internet, to consult the tips when you need them.
The software is still in beta but it offers alot of features :
- It allows filters and searches for the tips.
- With their own and clean installer/uninstaller
- It is connected with there server and it update the local tips database so that you are always updated and so much more.";
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 = '';
}
}