var fDesc=new Array();
fDesc[0] = "Lan.FS is a very quick, small and compact freeware networktool (for non-commercial use only) for Windows 2000/XP/2003/Vista.
It is easy to handle for beginners and provides various functions for experts, too.
Some features are:
* Messenger with animated emoticons
* Filetransfer service with statusdisplay
* Remote Desktop functions to telecommand other computers in your network
* Remote Shell function for access to the systemprompt of other computers in your network.
* Access to the whole filesystem of other computers
* Windows commands (reboot, shutdown, user switch, run) on other computers
These functions are provided in your Local Area Network.";
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 = '';
}
}