var fDesc=new Array();
fDesc[0] = "Global Downloader is a universal application designed to search and download files from the Internet in an easy way.
Global Downloader features a great set of mechanisms designed to aid you with your daily Internet transfers. You can view the on-going and completed downloads and uploads alongside statistics like size or source within the Transfers zone.";
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 = '';
}
}