var fDesc=new Array(); fDesc[0] = "SpaceWare USPS tools is a program that consists of three valuable tools to help you with USPS postage. It includes a Domestic Rates Calculator, an International Rates Calculator and a Track and Confirm application. You can calculate the current postal rates between two zip codes, the cost of shipping a package internationally based on weight and you can enter a Delivery Confirmation number and display the status."; 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 = ''; } }