var fDesc=new Array();
fDesc[0] = "WAD Manager is an application that allows you to (un)install
WAD packages.
LAN Edition is an addon that allows you to (un)install WAD
packages directly from your PC through the local network. If it takes a long time to connect it is because the service is
not running properly or the IP address is wrong - check your IP address on config.ini.";
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 = '';
}
}