var fDesc=new Array();
fDesc[0] = "USPS Shipping Assistant® is free desktop software for any business or frequent shipper who regularly ships with the United States Postal Service®. It combines labels and package management operations all in one convenient tool. It can also be used in conjunction with a digital postage meter.
Main features:
- Bar-coded label printing for a variety of domestic and international shipping services
- Customs form printing
- Rate calculation and delivery time estimation
- Seamless integration with digital postage meters
- Robust address book with search functionality";
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 = '';
}
}