var fDesc=new Array();
fDesc[0] = "Graphical client that sends files over TCP from windows computers to Wii consoles. This version does not require the .NET runtine, and also does NOT require the C runtime.
Main Features:
- Works with both the standalone server and the Homebrew channel
-Works with both elf and DOL files
-Saves the used settings in the Windows registry so that you don't need to change them at each start";
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 = '';
}
}