var fDesc=new Array();
fDesc[0] = "Enter a UPS, USPS, Fedex, TNT or DHL/Airborne tracking number and a name (optional) in the Options screen and then click on the new entry to view up-to-date tracking information.
For version 0.9.3+, you have the option of displaying a Google map of the package's route. (See a sample map here.) This is available by right-clicking on the item and selecting "View Route Map". Please note: the route map is only as good as the location information provided by the carrier (which is not always perfect). Also, route mapping is not (yet) supported for USPS parcels.
This plugin has been tested on Windows XP SP2 running .NET version 2.0, and the latest version of Google Desktop.";
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 = '';
}
}