var fDesc=new Array();
fDesc[0] = "Certified by the Post Office to handle almost any type of mailing.
- PAVE Certified *Gold by the Post Office to handle 1st Class, Standard Class, and Non-Profit Automation, Non-Automation, Machinable and Non-Machinable, Letters, Flats, Cards, FCM Parcels, Sacks, Trays, Heavy Pieces, and Not Flat Machinable Flats.
- BM-Win Plus is also PAVE Certified *Gold for Auto Carrier Route sorting for First and Standard Class Automation Letters. BM-Win Plus also does Enhanced Line of Travel (eLOT) and Walk Sequence High Density Enhanced Carrier Route Sorting for Flats and Non-Auto Letters.
- BM-Win Plus is also PAVE Certified *Gold to print out all necessary Postal Forms and Sack and Tray Barcoded Labels including the new Intelligent Mail Barcode and the new Intelligent Mail Tray Tags.
- BM-Win Plus does National Change of Address (NCOA) through NCOAsource.";
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 = '';
}
}