var fDesc=new Array();
fDesc[0] = "Leaf Community Edition is a software application that makes it easy for you to fully utilize your always-on broadband connection to your home network.
Main features:
- You can always stay connected to your media no matter where you are.
- Easily stream music directly to your friend's digital media receiver.
- The file sharing is like no other file sharing, it is actually folder sharing across the internet.";
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 = '';
}
}