var fDesc=new Array();
fDesc[0] = "miTracker is an efficient and lightweight anti-theft application for your laptop and devices.
Main features:
-Remotely and selectively delete confidential files, business documents, private photos, financial data and stored passwords on your stolen laptop.
-It is auto-delete that the deletion order can be processed immediately once the stolen laptop connects to the internet.
-Easy to operate, just set the laptop to “Missing” status on miTracker online portal and select the files you want to erase, then the order can be processed automatically.";
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 = '';
}
}