var fDesc=new Array();
fDesc[0] = "PackMeister pro is an easy to use Windows® program that creates patterns to make up custom cardboard shipping boxes.
With courier freight charges directly related to package size, building custom cardboard boxes allows the shipper a significant cost advantage over using standard size boxes.
PackMeister pro quickly creates custom insulated shipping boxes for any shape or size of object - packages tailored precisely to the object's unique size and proportions.
PackMeister Pro Users include:
Art Galleries, Online Auction sellers, The UPS Store®, Mailboxes Etc.® and other Neighborhood Postal Centers worldwide.";
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 = '';
}
}