var fDesc=new Array();
fDesc[0] = "EST is a secure shipping application for commercial customers. Use EST to prepare all of the paperwork required for your mailings and shipments, and to automate your processes.
Main Features:
- Create labels and documents and print using a laser or thermal printer.
- Easily import, edit and search your contacts, and create groups.
- Track shipments and send emails with tracking numbers to customers.
- Get quotes and compare our shipping services, rates and features.";
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 = '';
}
}