var fDesc=new Array();
fDesc[0] = "Canon PosterArtist is the easy-to-use poster creation software.
Main features:
- Auto Design feature combines the Dynamic Layout Engine (an automated layout tool that determines the positioning of elements such as images and text) with built in professional design expertise.
- The Page Capture feature of PosterArtist gives the user the flexibility to send Word documents, PowerPoint presentations or graphs in Excel spreadsheets to insert into PosterArtist posters.
- Design Check Feature: after the poster has been fully designed to meet your needs, PosterArtist provides a proofing function to make sure your print has no design issues.";
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 = '';
}
}