var fDesc=new Array();
fDesc[0] = "EtherPAD Explorer offers customers an easy way to find EtherPADs on the network (local segment of the LAN).
Users are able to retrieve configurations in a text file format. These files can and should be backed up. Files can even be modified and uploaded.
This is a very useful time saver in large rollouts where configurations are simliar, or to system integrators who want to leave their customers with a configuration file after completion of a project.";
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 = '';
}
}