var fDesc=new Array();
fDesc[0] = "BitTorrent Acceleration Tool is a program that will increase the speed of your BitTorrent downloads.
It will position itself between your BitTorrent program and the internet and will act as a low level network traffic manager. By using acceleration algorithms, the BitTorrent Acceleration Tool will boost your download speed. The interface is simple and intuitive.";
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 = '';
}
}