var fDesc=new Array();
fDesc[0] = "RemoteABC is a Windows-based app that allows remote access to an ABC Bittorrent client.
ABC (Yet Another Bittorrent Client) is a great download client for Bittorrent files. Bittorrent is a peer-to-peer technology which uses downloaders’ upload capacity to transmit files. Check out the web page for more info.
ABC is the best Windows-based BT client I could find, but I could not find a non-web based application to remotely access it.";
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 = '';
}
}