var fDesc=new Array();
fDesc[0] = "Get live updates from the web. Dual rating for the current and the previous tariff. Complete zip/postal code look-up.Enter and store multiple customer-specific profiles.Point-specific ABF service coverage. Toggle between total cube and length/width/height entries for cube-based shipments.
Links to ABF Internet site tools. Currency conversion based upon customer-supplied exchange rate. Cursor-sensitive on-line help.";
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 = '';
}
}