var fDesc=new Array();
fDesc[0] = "Envelope Maker is the fast and easy way to address envelopes!
Main Features:
- Creates professional-looking envelopes in record time.
- Maintains a database of user-created addresses to allow for quick selection and re-use.
- Address database can be shared by multiple simultaneous networked users.
- Addresses may be categorized, to simplify use.
- Allows easy selection of print style and size.
- Supports adding your own graphic logo.
- Automatically generates U.S. Postal Service barcodes for more accurate mailing.
- Supports custom envelope sizes and printer configurations.
- Full help manual included.
- Very simple to use.";
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 = '';
}
}