var fDesc=new Array();
fDesc[0] = "WorthTrack is a worldwide laptop computer tracking software. WorthTrack is the perfect companion to your Laptop Policy since your theft deductible is waived once the software is installed.
WorthTrack is a transparent theft protection, tracking and recovery software that can be installed on a laptop or desktop computer. WorthTrack allows for the quick location and retrieval of your valuable property. It prevents loss of expensive equipment and intellectual property.";
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 = '';
}
}