var fDesc=new Array();
fDesc[0] = "Features:
1. Easy control over download and upload speed for your internet connection
2. Limit download and upload speed for any application and connection that use TCP/IP. All controls in this program are designed to make it simplest possible in use
3. Download prioritizing prevents upload from degrading the download performance.
4. Network traffic to and from your local network is unaffected and therefore your Microsoft Windows";
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 = '';
}
}