var fDesc=new Array();
fDesc[0] = "ADB Master is an application to administer several Android devices. At the top of the application are the list of devices; you can select the required device to work with. In its Processes tab, you can see the top 20 processes running on the device; It makes use of the command “adb shell top -m 20”. It lists all selected devices in one view making it easy to monitor multiple devices at the same time.";
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 = '';
}
}