var fDesc=new Array();
fDesc[0] = "The best software for printing invitations and announcements at home. PrintingPress is easy to use, works with any stationery, includes stylish fonts & graphics and makes it easy to address envelopes and add any photo or graphic to cards for professional-looking results at home. Works with any stationery.
Main Features:
- Works with any stationery, any PC, any printer (both inkjet and laser), any font, any graphic, any digital photo.
- Easily match layout for flat cards, folded cards, envelopes, place cards, programs, overlays and StationeryStamps™ personalized postage.
- Create unique Mailing Lists for each project so you can print individually-addressed envelopes without difficult mail merges.";
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 = '';
}
}