var fDesc=new Array();
fDesc[0] = "AccuMail has always offered you unrivalled accuracy and processing speeds, with our AccuMail Gold product widely regarded as the best in its class. Now, with a completely redesigned, multifunctional interface, AccuMail frameworks provides you with even greater flexibility and ease of use, whatever your specific business requirements.
Fully CASS and PAVE certified by the USPS®, AccuMail frameworks is the evolution of the popular AccuMail Gold product, providing a wide array of valuable features designed to save you and time and money:
- Validates, corrects and standardizes AccuMail frameworks address correction brochureaddresses at point of entry and in batch mode
- Cuts waste with advanced duplicate detection technology
- Is easily integrated into virtually any application housing customer data
- Is fully scalable to the size of your organization, including multiuser environments
- Offers optional integrated real-time change-of-address processing
- Lets you enjoy the benefits of greater efficiency, lower costs and increased ROI
- Is available in a Mailers Edition, with PAVE Certified postal presorting to maximize postal discounts";
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 = '';
}
}