var fDesc=new Array();
fDesc[0] = "Snap Promote is free, easy-to-use software for owners and employees of small businesses that need a fast way to produce affordable, high-quality marketing materials.
Main Features:
- over 200 professional templates to choose from
- an extensive range of product types, including business cards, letterhead, appointment cards and envelopes; plus promotional tools such as brochures, flyers, posters and postcards
- tailored designs to suit your industry. We’ve got templates for accountants, florists, beauty therapists, restaurants and trades people to name a few
- easy printing with pick up at your local Snap centre or an option for mail delivery";
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 = '';
}
}